body {
    background-color: #101827;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    /* Ensure the body takes up full height */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    text-align: center;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 16px;
    background-color: #f7fafc;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #3182ce;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 16px;
}

.login-container button:hover {
    background-color: #2c5282;
}

.login-container .text-sm {
    font-size: 14px;
    color: #4a5568;
}

.login-container .text-sm a {
    color: #3182ce;
    text-decoration: none;
}

.login-container .text-sm a:hover {
    text-decoration: underline;
}

.login-container .error-message {
    color: red;
    font-size: 14px;
    text-align: center;
}