/* Auth Pages Styles - Full Edge-to-Edge Image Design */

/* Force font application */
* {
  font-family: "Lexend", "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif !important;
}

.auth-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.auth-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.auth-content {
    display: flex;
    height: 100vh;
    position: relative;
}

/* Image Half - Full Edge-to-Edge */
.auth-image {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #6B46C1 0%, #4C1D95 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Add a beautiful jewellery-themed background pattern */
.auth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="jewellery-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="white" opacity="0.15"/><circle cx="50" cy="10" r="1.5" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="white" opacity="0.15"/><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.1"/><path d="M20 20 L40 20 L30 40 Z" fill="white" opacity="0.05"/><path d="M15 15 L25 15 L20 25 Z" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23jewellery-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.image-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 40px;
    max-width: 500px;
}

.image-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.image-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 2rem;
    opacity: 0.9;
    min-width: 40px;
}

/* Form Half */
.auth-form {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #4f3267 0%, #4f3267 100%);
    padding: 40px 30px;
    position: relative;
    overflow-y: auto;
}

 

.form-wrapper {
    width: 100%;
    max-width: 430px;
    position: relative;
    background: #ffffff;
    border-radius: 16px; 
    padding: 40px 35px;
    border: 1px solid #f1f5f9;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 22px;
    line-height: 44.6px;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 8px;
}

.form-header p {
    color: #6B7280;
    font-size: 13px;
    line-height: 1.4;
}

.auth-form-content {
    width: 100%;
}

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

/* Form Row Layout for Two Columns */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-half {
    flex: 1;
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4C1D95;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #6B46C1 !important;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.06);
    position: relative;
}

.form-control:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-control:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.15), 0 4px 12px rgba(107, 70, 193, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Gender Selection Styles */
.gender-selection {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.gender-option {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.gender-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 12px;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gender-label i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.gender-option:hover .gender-label {
    border-color: #d1d5db;
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.gender-option input[type="radio"]:checked + .gender-label {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.gender-option input[type="radio"]:checked + .gender-label i {
    color: #ffffff;
}

.gender-option input[type="radio"]:focus + .gender-label {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Password Input Wrapper with Toggle Button */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    padding-right: 35px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle-btn:hover {
    background: #F3F0FF;
    color: #4C1D95;
}

.password-toggle-btn:focus {
    outline: none;
    background: #EDE9FE;
    color: #4C1D95;
}

.password-toggle-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.password-toggle-btn:hover i {
    transform: scale(1.1);
}

/* Smooth icon transition */
.password-toggle-btn i.icon-view,
.password-toggle-btn i.icon-close {
    transition: all 0.3s ease;
}

/* Active state for better visual feedback */
.password-toggle-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Focus state for accessibility */
.password-toggle-btn:focus-visible {
    outline: 2px solid #6B46C1;
    outline-offset: 2px;
}

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

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #6B7280;
    font-weight: 500;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6B46C1;
}

.forgot-link {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 12px;
}

.forgot-link:hover {
    color: #4C1D95;
    text-decoration: underline;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #6B7280;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.terms-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6B46C1;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-link {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 600;
}

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

.btn-auth {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #6B46C1, #4C1D95);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.4);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-auth:hover::before {
    left: 100%;
}

.btn-auth:hover {
    background: linear-gradient(135deg, #4C1D95, #553C9A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.5);
}

.btn-auth:active {
    transform: translateY(0);
}

.btn-auth-secondary {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    color: #6B7280;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-auth-secondary:hover {
    background: #F3F0FF;
    border-color: #6B46C1;
    color: #4C1D95;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.1);
}

.auth-divider {
    text-align: center;
    margin: 3px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: #ffffff;
    padding: 0 15px;
    color: #6B7280;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-left-color: #DC2626;
    color: #DC2626;
}

.alert-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-left-color: #6B46C1;
    color: #6B46C1;
}

.demo-credentials {
    background: #F3F0FF;
    padding: 16px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.04);
}

.help-text {
    margin-top: 20px;
    text-align: center;
}

.help-text p {
    color: #6B7280;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-content h1 {
        font-size: 3rem;
    }
    
    .image-content p {
        font-size: 1.1rem;
    }
    
    .auth-features {
        gap: 20px;
    }
    
    .feature-item {
        font-size: 1.1rem;
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .auth-content {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .auth-image {
        display: none;
    }
    
    .image-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .image-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .auth-features {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 1rem;
        padding: 10px 12px;
        flex: 1;
        min-width: 120px;
    }
    
    .auth-form {
        padding: 30px 20px;
        min-height: 100vh;
        flex: 1;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
    }
    
    .form-wrapper {
        max-width: 100%;
        padding: 30px 25px;
        margin: 0;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .auth-image {
        display: none;
    }
    
    .image-content h1 {
        font-size: 2rem;
    }
    
    .image-content p {
        font-size: 0.95rem;
    }
    
    .auth-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .auth-form {
        padding: 25px 15px;
        min-height: 100vh;
        flex: 1;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
        padding-top: 15px;
    }
    
    .form-wrapper {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .btn-auth,
    .btn-auth-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Keep form rows in 2 columns on mobile */
    .form-row {
        flex-direction: row;
        gap: 10px;
    }
    
    .form-group-half {
        margin-bottom: 15px;
        flex: 1;
    }
    
    /* Gender selection responsive */
    .gender-label {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .gender-label i {
        font-size: 12px;
    }
}

/* Success Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon i {
    font-size: 40px;
    color: #ffffff;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.popup-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-popup {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-popup:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Loading Button States */
.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

/* OTP Form Styles */
.otp-header {
    text-align: center;
    margin-bottom: 30px;
}

.otp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.otp-icon i {
    font-size: 24px;
    color: #ffffff;
}

.otp-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.otp-header p {
    color: #666666;
    margin-bottom: 5px;
    font-size: 14px;
}

.otp-instruction {
    color: #888888;
    font-size: 13px;
    margin-bottom: 0;
}

.otp-input {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 8px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.otp-timer {
    text-align: center;
    margin-top: 15px;
}

.timer-text {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}

#timerCount {
    color: #dc2626;
    font-weight: bold;
}

.resend-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.resend-btn:hover {
    color: #333333;
}

.otp-footer {
    text-align: center;
    margin-top: 30px;
}

.back-btn {
    background: none;
    border: none;
    color: #666666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #000000;
}

.back-btn i {
    margin-right: 8px;
    font-size: 12px;
}

.otp-help {
    color: #888888;
    font-size: 12px;
    margin: 0;
}

.otp-help a {
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
}

.otp-help a:hover {
    color: #333333;
}

/* Compact Registration Form Styles */
.form-wrapper {
    padding: 25px 30px !important;
    max-width: 480px !important;
}

.form-header {
    margin-bottom: 20px !important;
}

.form-header h2 {
    font-size: 22px !important;
    margin-bottom: 5px !important;
}

.form-group {
    margin-bottom: 12px !important;
}

.form-row {
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.form-group-half {
    margin-bottom: 0 !important;
}

.form-label {
    font-size: 11px !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
}

.form-control {
    padding: 8px 35px 8px 12px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    position: relative !important;
}

.form-control-with-icon {
    position: relative !important;
}

.form-control-with-icon .form-control {
    padding-left: 35px !important;
}

.form-control-icon {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #9CA3AF !important;
    font-size: 14px !important;
    z-index: 2 !important;
    pointer-events: none !important;
    transition: color 0.3s ease !important;
}

.form-control:focus + .form-control-icon,
.form-control-with-icon:focus-within .form-control-icon {
    color: #6B46C1 !important;
}

.phone-icon {
    font-size: 16px !important;
    font-style: normal !important;
}

.gender-selection {
    gap: 8px !important;
    margin-top: 4px !important;
}

.gender-option {
    flex: 1 !important;
}

.gender-label {
    padding: 8px 12px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
}

.gender-label i {
    font-size: 14px !important;
}

.password-input-wrapper {
    margin-top: 4px !important;
}

.password-toggle-btn {
    padding: 8px !important;
    right: 5px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #9CA3AF !important;
    cursor: pointer !important;
    z-index: 3 !important;
}

.password-strength-indicator {
    margin-top: 6px !important;
}

.strength-bar {
    height: 3px !important;
}

.strength-info {
    margin-top: 4px !important;
}

.strength-text {
    font-size: 11px !important;
}

.strength-requirements {
    font-size: 10px !important;
}

.form-options {
    margin: 8px 0 !important;
}

.terms-check {
    font-size: 11px !important;
    line-height: 1.3 !important;
}

.btn-auth {
    padding: 12px 20px !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    border-radius: 6px !important;
}

.auth-divider {
    margin: 8px 0 !important;
}

.auth-divider span {
    font-size: 12px !important;
    padding: 0 10px !important;
}

/* Compact OTP Form */
.otp-header {
    margin-bottom: 20px !important;
}

.otp-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 12px !important;
}

.otp-icon i {
    font-size: 18px !important;
}

.otp-header h3 {
    font-size: 18px !important;
    margin-bottom: 6px !important;
}

.otp-header p {
    font-size: 12px !important;
    margin-bottom: 3px !important;
}

.otp-instruction {
    font-size: 11px !important;
}

.otp-input {
    font-size: 20px !important;
    letter-spacing: 6px !important;
    padding: 12px 15px !important;
    margin-top: 4px !important;
}

.otp-timer {
    margin-top: 8px !important;
}

.timer-text {
    font-size: 12px !important;
}

.resend-btn {
    font-size: 12px !important;
}

.otp-footer {
    margin-top: 20px !important;
}

.back-btn {
    font-size: 12px !important;
    margin-bottom: 8px !important;
}

.otp-help {
    font-size: 10px !important;
}
@media (min-width: 768px and max-width: 1300px) {
    .logincc
    {
        margin-top: 44px !important;
    } 

}
/* Mobile Responsive for OTP */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px 15px !important;
        max-width: 100% !important;
    }
    
    .otp-input {
        font-size: 18px !important;
        letter-spacing: 4px !important;
        padding: 10px 12px !important;
    }
    
    .otp-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .otp-icon i {
        font-size: 16px !important;
    }
    
    .otp-header h3 {
        font-size: 16px !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .form-group-half {
        width: 100% !important;
        margin-bottom: 8px !important;
    }
}
