.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f3f4f6;
    box-sizing: border-box;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
    box-sizing: border-box;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.role-selector {
    display: grid;
    text-align: center;
}

.role-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #D3E9FF;
    border-radius: 8px;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #0E5A8A;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-group {
    gap: .5rem;
}

.role-btn.active,
.role-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background-color: #f0f5ff;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.btn-primary {
    padding: 12px 24px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.btn-primary:hover {
    background-color: #4338ca;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    font-size: 14px;
}

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

.auth-footer a:hover {
    text-decoration: underline;
}