.stepper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.stepper-line {
    position: absolute;
    top: 30px;
    left: 20%;
    right: 20%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    z-index: 2;
    text-align: center;
    width: 120px;
}

.step-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #21c163 0%, #238d0f63 100%);
    color: white;
}

.step-desc {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.role-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.role-box:hover, .role-box.active {
    border-color: #21c163;
    background: linear-gradient(135deg, #21c163 0%, #238d0f63 100%);
    color: #fff;
}

.role-box i {
    font-size: 32px;
    margin-bottom: 10px;
}

.role-box-label {
    font-weight: bold;
    font-size: 16px;
}

.step-description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.hidden {
    display: none;
}
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
}

.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    top: -400px;
    right: -400px;
    z-index: 0;
}

.auth-wrapper::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    bottom: -300px;
    left: -300px;
    z-index: 0;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 800px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-logo {
    margin-bottom: 2.5rem;
    text-align: center;
}

.auth-logo img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: #f8fafc;
}

.form-control:focus,
.form-select:focus {
    border-color: #21c163;
    box-shadow: #21c16336;
    background-color: #fff;
}
.input-group {
    border-radius: 12px;
    overflow: hidden;
}

.btn-outline-secondary {
    border-color: #e2e8f0;
    color: #64748b;
    background-color: #f8fafc;
    border-radius: 0 12px 12px 0;
    padding: 0.875rem 1.25rem;
}

.btn-outline-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.text-primary {
    color: #21c163 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.text-primary:hover {
    color: #21c163 !important;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .auth-card {
        margin: 1rem;
        padding: 1.5rem;
    }
}


.btn-primary, .btn-secondary {
    background: transparent;
    border: 2px solid #21c163;
    color: #21c163;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    background: #21c163;
    color: #fff;
    border-color: #21c163;
}