.section-title {
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
        color: #333;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(234deg, #ff4200, #7e0097);
        border-radius: 3px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control-lg {
        border-radius: 8px;
        padding: 12px 15px;
        font-size: 16px;
        border: 1px solid #e1e5e9;
        transition: all 0.3s;
    }
    
    .form-control-lg:focus {
        border-color: #7e0097;
        box-shadow: 0 0 0 0.2rem rgba(126, 0, 151, 0.25);
    }
    
    .form-label {
        font-weight: 500;
        margin-bottom: 8px;
        color: #495057;
    }
    
    .gradient-btn {
        background: linear-gradient(234deg, #ff4200, #7e0097);
        border: none;
        color: white;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 8px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px 0 rgba(126, 0, 151, 0.2);
    }
    
    .gradient-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px 0 rgba(126, 0, 151, 0.3);
        color: white;
    }
    
    .image-preview-placeholder {
        width: 150px;
        height: 150px;
        border: 2px dashed #dee2e6;
    }
    
    .card {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .loader-line {
        height: 4px;
        background: linear-gradient(234deg, #ff4200, #7e0097);
        border-radius: 2px;
    }
    
    .form-text {
        font-size: 0.875rem;
        color: #6c757d;
        margin-top: 5px;
    }
    
    @media (max-width: 768px) {
        .card-body {
            padding: 1.5rem !important;
        }
        
        .form-control-lg {
            font-size: 16px; /* Prevents zoom on iOS */
        }
        
        .d-md-flex {
            flex-direction: column;
        }
        
        .me-md-2 {
            margin-right: 0 !important;
            margin-bottom: 10px;
        }
    }

/* OTP Modal Styles */
#otpVerificationModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#otpVerificationModal .otp-digit {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#otpVerificationModal .otp-digit:focus {
    border-color: #7e0097;
    box-shadow: 0 0 0 0.25rem rgba(126, 0, 151, 0.25);
    transform: translateY(-2px);
}

#otpVerificationModal .otp-digit.filled {
    border-color: #ff4200;
    background-color: rgba(255, 66, 0, 0.05);
}

#otpVerificationModal .btn-primary {
    background: linear-gradient(234deg, #ff4200, #7e0097);
    border: none;
    transition: all 0.3s;
}

#otpVerificationModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 66, 0, 0.3);
}

/* Full Page Loader */
.full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Button with gradient */
.gradient-btn {
    background: linear-gradient(234deg, #ff4200, #7e0097);
    border: none;
    color: white;
    transition: all 0.3s;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 66, 0, 0.3);
    color: white;
}

/* Modal close button disabled state */
#otpVerificationModal .btn-close:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.otp-digit.filled {
    border-color: #ff4200 !important;
    background-color: rgba(255, 66, 0, 0.05) !important;
    box-shadow: 0 2px 8px rgba(255, 66, 0, 0.2) !important;
}

.otp-digit:focus {
    border-color: #7e0097 !important;
    box-shadow: 0 0 0 0.25rem rgba(126, 0, 151, 0.25) !important;
    transform: translateY(-2px);
}