
.registration-container {
    max-width: 800px;
    margin: 1rem auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(181deg, #103d80 0%, #0f8e96 100%);
    color: white;
}
.step {
    text-align: center;
    flex: 1;
    position: relative;
}
.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.step.active .step-number {
    background: white;
    color: #2575fc;
}
.step-title {
    font-size: 0.9rem;
    font-weight: 500;
}
.step-content {
    padding: 1rem 2rem;
    display: none;
    max-height: 335px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #0f8894 #e9ecef;
    
}
.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-top: 1px solid #e9ecef;
}
.otp-section {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}
.otp-input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #dee2e6;
    border-radius: 5px;
}
.otp-input:focus {
    border-color: #2575fc;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(37, 117, 252, 0.25);
}

.mobile-with-otp {
    display: flex;
    gap: 10px;
}
.mobile-input {
    flex: 1;
}
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}
.referral-field {
    margin-top: 15px;
    display: none;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 05px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.form-text {
    margin-top: 5px;
}
.glass-card {
    max-width: 90vh;
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
    line-height: 38px !important;
    padding-left: 10px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    font-size: 1rem;
    background-color: #fff !important;
    width: 100% !important;
}

.select2-selection__arrow {
    height: 36px !important;
    top: 1px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    padding: 4px 5px !important;
    font-size: 1rem;
    background-color: #fff !important;
}

.select2-container .select2-search__field {
    margin-top: 5px !important;
}

.select2-container {
    width: 100% !important;            
    margin-top: 5px !important;
}
