body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f4f6f9;
}

h2 {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #2c3e50;
}

a:hover {
    text-decoration: underline;
}

button {
    padding: 5px 10px;
    cursor: pointer;
}

input, select, textarea {
    padding: 5px;
    margin: 5px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
}

table th {
    background-color: #2c3e50;
    color: white;
}

table th, table td {
    padding: 8px;
    border: 1px solid #ccc;
}

form {
    margin-bottom: 10px;
}

/* Login Card */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.login-card {
    background-color: white;
    padding: 30px;
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-card input {
    width: 100%;
    box-sizing: border-box;
}

.login-card button {
    width: 100%;
    margin-top: 10px;
}

/* Create Design */
.form-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.form-card {
    background-color: white;
    padding: 30px;
    width: 500px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-card h2 {
    margin-bottom: 20px;
}

.form-card label {
    font-weight: bold;
}

.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    box-sizing: border-box;
}

.form-card textarea {
    height: 100px;
    resize: vertical;
}

.form-card button {
    margin-top: 10px;
}