.auth-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #eef2ff, #f0fdfa);
    padding: 20px;
}


.auth-card {
    background: white;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
}


.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.forgot-link {
    color: #4f46e5;
}

.forgot-link:hover {
    text-decoration: underline;
}

.full-width {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a {
    color: #4f46e5;
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;;
    font-size: 14px;
    background-color: #fff;
    transition: 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #4f46e5;
}

.form-group input.error {
    border-color:  #ef4444;;
}

.error-message {
    color:  #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    height: 14px;
}
