/**
 * Estilos para el Modal de Registro de Contribuyentes
 * Overlay modal sobre la página de login
 */

/* Importar fuente Nunito Sans */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* SweetAlert2 sobre el modal de registro */
.swal2-container {
    z-index: 10000 !important;
}

.swal2-popup {
    z-index: 10001 !important;
}

/* Desactivar menú contextual de Chrome en PWA (long press) - SOLO MÓVILES */
@media (hover: none) and (pointer: coarse) {
    .register-modal-overlay * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Permitir selección de texto en inputs y áreas editables del modal en móviles */
    .register-modal-overlay input,
    .register-modal-overlay textarea,
    .register-modal-overlay [contenteditable="true"] {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

/* Prevenir long press en imágenes del modal (en todos los dispositivos) */
.register-modal-overlay img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* ==================== Modal Overlay ==================== */
.register-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    /* Protección para navegador Samsung - Prevenir gestos de navegación */
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

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

/* ==================== Modal Container ==================== */
.register-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideUp 0.4s ease;
    margin: auto;
    font-family: 'Nunito Sans', sans-serif;
    /* Protección para navegador Samsung */
    overscroll-behavior: contain;
    touch-action: pan-y;
}

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

/* ==================== Botón Cerrar ==================== */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #ffc107;
    transform: rotate(90deg);
}

.modal-close svg {
    fill: #333;
}

.modal-close:hover svg {
    fill: white;
}

/* ==================== Modal Header ==================== */
.modal-header {
    padding: 32px 32px 12px 32px;
    border-bottom: none;
    text-align: center;
    flex-shrink: 0;
}

.logo-small {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-small img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
}

.logo-small span {
    display: none;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ==================== Modal Body ==================== */
.modal-body {
    padding: 0 32px 32px 32px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    /* Protección para navegador Samsung - Prevenir gestos de navegación */
    overscroll-behavior: contain;
    touch-action: pan-y;
    position: relative;
    isolation: isolate;
}

/* Ocultar scrollbar pero mantener funcionalidad */
.modal-body::-webkit-scrollbar {
    display: none;
}

.modal-body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* ==================== Sección de pregunta inicial ==================== */
.question-section {
    margin-bottom: 24px;
}

.question-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

/* Sección importante */
.important-section {
    text-align: center;
    margin-bottom: 24px;
}

.important-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2732;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

/* Tarjetas de opción */
.option-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
}

.option-card:hover {
    border-color: #ffc107;
    background: #fffbf0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.option-card:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.option-card.active {
    border-color: #ffc107;
    background: #fffbf0;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon {
    background: #dcfce7;
    color: #16a34a;
}

.doc-icon {
    background: #f0f0f0;
    color: #666;
}

.option-card.active .check-icon {
    background: #16a34a;
    color: white;
}

.option-card.active .doc-icon {
    background: #ffc107;
    color: white;
}

.option-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.option-card.active .option-text {
    color: #333;
}

/* Estilos legacy para compatibilidad */
.toggle-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.toggle-btn {
    flex: 1;
    max-width: 150px;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.toggle-btn:hover {
    border-color: #ffc107;
    background: #fffbf0;
}

.toggle-btn.active {
    border-color: #ffc107;
    background: #ffc107;
    color: white;
}

/* ==================== Formulario de registro ==================== */
.register-form {
    width: 100%;
}

.form-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffc107;
}

.section-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Protección específica para selectores en navegador Samsung */
.form-group select {
    -webkit-appearance: menulist;
    appearance: menulist;
    cursor: pointer;
    position: relative;
    z-index: 1;
    /* Prevenir interacción accidental con elementos detrás */
    isolation: isolate;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* Mensajes de validación */
.field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

.field-success {
    display: block;
    color: #28a745;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

.field-hint {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 4px;
    font-style: italic;
}

/* Estados de validación en inputs */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
}

/* Código de Establecimiento - valor en mayúsculas */
#regCodEstable {
    text-transform: uppercase;
}

#regCodEstable::placeholder {
    text-transform: none;
}

/* ==================== Sistema de Ayuda ==================== */
.label-with-help {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    margin-bottom: 6px;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc107;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.help-btn:hover {
    background: #ffc107;
    transform: scale(1.1);
}

.help-tooltip {
    position: relative;
    background: white;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 12px 28px 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-top: 6px;
    width: 100%;
}

.help-tooltip.show {
    display: block;
    animation: tooltipFadeIn 0.2s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-tooltip::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 2px solid #ffc107;
    border-top: 2px solid #ffc107;
    transform: rotate(45deg);
    z-index: 1;
}

.help-tooltip-close {
    position: absolute;
    top: 4px;
    right: 4px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 2px 6px;
    transition: color 0.2s;
}

.help-tooltip-close:hover {
    color: #333;
}

/* ==================== Campos fiscales ==================== */
.fiscal-fields {
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Botón de submit ==================== */
#btnSubmitRegister {
    width: 100%;
    padding: 14px;
    background: #ffc107;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#btnSubmitRegister:hover:not(:disabled) {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

#btnSubmitRegister:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .register-modal-overlay {
        padding: 0;
        align-items: flex-start;
    }
    
    .register-modal {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .modal-header {
        padding: 24px 20px 12px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .important-title {
        font-size: 17px;
    }
    
    .option-card {
        padding: 18px;
    }
    
    .option-text {
        font-size: 15px;
    }
    
    .logo-small img {
        width: 70px;
        height: 70px;
    }
    
    .modal-subtitle {
        font-size: 13px;
    }
    
    .modal-body {
        padding: 0 20px 20px 20px;
    }
    
    .progress-bar-container {
        margin: 0 -20px 30px -20px;
        padding: 16px 20px 15px 20px;
    }
    
    .question-label {
        font-size: 15px;
    }
    
    .toggle-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 9px 10px;
    }
    
    #btnSubmitRegister {
        font-size: 15px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .important-title {
        font-size: 16px;
    }
    
    .option-card {
        padding: 16px;
        gap: 12px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
    }
    
    .option-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .option-text {
        font-size: 14px;
    }
    
    .toggle-buttons {
        flex-direction: column;
    }
    
    .toggle-btn {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    .logo-small img {
        width: 60px;
        height: 60px;
    }
}

/* ==================== Autocompletado de Actividades Económicas ==================== */
.autocomplete-container {
    position: relative;
}

/* Wrapper para el input de actividad con posición relativa */
.autocomplete-container .form-input {
    position: relative;
}

/* Botón de limpieza para actividad económica */
.actividad-clear-btn {
    position: absolute;
    right: 10px;
    top: calc(14px + 6px + 10px + 14px); /* label font-size (14px) + margin-bottom (6px) + input padding-top (10px) + mitad de altura del input (~14px) */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #999;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 22px;
    font-weight: normal;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.actividad-clear-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.actividad-clear-btn:active {
    background: #e9ecef;
    transform: scale(0.95);
}

/* Ajustar padding del input cuando tiene botón de limpieza */
#regActividad[readonly] {
    padding-right: 40px;
    background-color: #f8f9fa;
    cursor: not-allowed;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .actividad-clear-btn {
        right: 8px;
        top: calc(19px + 6px + 9px + 11px); /* Ajustado para tamaño de fuente móvil */
        width: 26px;
        height: 26px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .actividad-clear-btn {
        right: 7px;
        top: calc(19px + 6px + 9px + 11px); /* Ajustado para tamaño de fuente móvil */
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.suggestion-item {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background: linear-gradient(135deg, #fffdf6 0%, #fff3cd 100%);
    transform: translateX(4px);
    border-left: 3px solid #ffc107;
    padding-left: 13px;
}

.suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.suggestion-code {
    font-weight: 600;
    color: #856404;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.suggestion-description {
    color: #6b7280;
    margin-left: 8px;
    font-size: 13px;
}

.suggestion-item:hover .suggestion-code {
    color: #e0a800;
}

.suggestion-item:hover .suggestion-description {
    color: #374151;
}

/* ==================== Ajuste para evitar scroll body cuando modal abierto ==================== */
body.modal-open {
    overflow: hidden;
}

/* ==================== Barra de Progreso ==================== */
.progress-bar-container {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    margin: 0 -32px 30px -32px;
    padding: 16px 32px 15px 32px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 0;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid #f3f4f6;
}

.progress-step.active .step-number {
    background: #ffc107;
    color: white;
    border-color: #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #d1fae5;
    color: #16a34a;
    border-color: #d1fae5;
}

.step-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: #ffc107;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #16a34a;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 -5px;
    position: relative;
    top: -10px;
    z-index: 1;
    max-width: 80px;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: #d1fae5;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    display: none; /* Ocultar visualmente pero mantener en DOM para el JS */
}

.progress-bar-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* ==================== Form Steps ==================== */
.form-step {
    display: none !important;
    position: relative;
}

.form-step.active {
    display: block !important;
}

.register-content {
    overflow: hidden;
    position: relative;
}

/* Animaciones de deslizamiento lateral */
.form-step.slide-in-next {
    animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.slide-in-prev {
    animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.slide-out-next {
    animation: slideOutToLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.slide-out-prev {
    animation: slideOutToRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes slideOutToRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ==================== Navegación de pasos ==================== */
.form-navigation {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    justify-content: center;
    width: 142.344px !important;
    min-width: 142.344px !important;
    max-width: 142.344px !important;
    height: 49px !important;
    min-height: 49px !important;
    max-height: 49px !important;
    padding: 0 !important;
    box-sizing: border-box;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: center;
}

.nav-btn:hover {
    border-color: #ffc107;
    color: #ffc107;
    background: #fffef8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
}

.nav-btn svg {
    transition: transform 0.3s ease;
}

.nav-btn:hover svg {
    transform: translateX(0);
}

.btn-prev:hover svg {
    transform: translateX(-3px);
}

.btn-next:hover svg {
    transform: translateX(3px);
}

.btn-next,
.form-navigation .submit-btn {
    margin-left: auto !important;
}

/* Ajustar submit button con medidas específicas */
.form-navigation .submit-btn {
    flex: 0 0 auto !important;
    background: #ffc107;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 142.344px !important;
    min-width: 142.344px !important;
    max-width: 142.344px !important;
    height: 49px !important;
    min-height: 49px !important;
    max-height: 49px !important;
    padding: 0 !important;
    box-sizing: border-box;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    align-self: center;
}

.form-navigation .submit-btn:hover:not(:disabled) {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.form-navigation .submit-btn:disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
