/* ============================================
   REGISTRO - Wizard Multistep + Company Register
   Requiere: base.css, auth.css, notifications.css
   ============================================ */

/* ================================
   WIZARD CONTAINER & BODY OVERRIDES
   ================================ */

body {
    padding: 20px 0;
    align-items: flex-start;
}

@supports (align-items: safe center) {
    body {
        align-items: safe center;
        padding: 0;
    }
}

.wizard-container {
    background: white;
    padding: 36px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 680px;
    margin: 20px;
    max-height: 92vh;
    overflow-y: auto;
    animation: wizardFadeIn 0.5s ease;
}

.wizard-container::-webkit-scrollbar {
    width: 6px;
}

.wizard-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

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

/* ================================
   STEPPER
   ================================ */

.wizard-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0 8px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9ecef;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    z-index: 1;
}

.step.active .step-circle {
    background: #007EBC;
    color: white;
    border-color: #007EBC;
    box-shadow: 0 0 0 5px rgba(0, 126, 188, 0.18);
    transform: scale(1.08);
}

.step.completed .step-circle {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step.completed .step-circle i::before {
    content: "\f00c"; /* fa-check */
}

.step-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    text-align: center;
    max-width: 72px;
    transition: color 0.3s;
    line-height: 1.2;
}

.step.active .step-label {
    color: #007EBC;
    font-weight: 700;
}

.step.completed .step-label {
    color: #28a745;
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    margin: 22px 6px 0;
    border-radius: 2px;
    transition: background 0.4s;
    min-width: 24px;
}

.step-line.completed {
    background: #28a745;
}

/* ================================
   STEP CARDS
   ================================ */

.step-card {
    animation: stepSlideIn 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.step-card h2 {
    color: #007EBC;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.step-card h2 i {
    font-size: 20px;
}

.step-description {
    color: #666;
    font-size: 14px;
    margin: -8px 0 4px;
    line-height: 1.4;
}

/* ================================
   FORM OVERRIDES FOR WIZARD
   ================================ */

.wizard-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wizard-container .form-group label {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.wizard-container .form-group label small {
    font-weight: 400;
    color: #999;
}

.wizard-container .form-group input[type="text"],
.wizard-container .form-group input[type="email"],
.wizard-container .form-group input[type="password"],
.wizard-container .form-group input[type="tel"],
.wizard-container .form-group input[type="date"],
.wizard-container .form-group textarea,
.wizard-container .form-group select {
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.wizard-container .form-group input:focus,
.wizard-container .form-group textarea:focus,
.wizard-container .form-group select:focus {
    outline: none;
    border-color: #007EBC;
    box-shadow: 0 0 0 3px rgba(0, 126, 188, 0.1);
}

.wizard-container .form-group input::placeholder,
.wizard-container .form-group textarea::placeholder {
    color: #bbb;
}

.wizard-container .form-group textarea {
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 44px !important;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 15px;
    padding: 4px;
}

.toggle-password:hover {
    color: #007EBC;
}

/* Password strength */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 4px;
    transition: all 0.3s;
    background: #e9ecef;
}

.password-strength.weak { background: linear-gradient(90deg, #dc3545 33%, #e9ecef 33%); }
.password-strength.medium { background: linear-gradient(90deg, #ffc107 66%, #e9ecef 66%); }
.password-strength.strong { background: #28a745; }

.password-requirements {
    margin-top: 6px;
}

.password-requirements small {
    color: #6c757d;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.password-requirements small i {
    color: #adb5bd;
    font-size: 0.72rem;
}

/* Two-column row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ================================
   PHOTO UPLOAD
   ================================ */

.photo-upload-area {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafbfc;
}

.photo-upload-area:hover,
.photo-upload-area.drag-over {
    border-color: #007EBC;
    background: #f0f8ff;
}

.photo-preview {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #aaa;
    overflow: hidden;
    flex-shrink: 0;
}

.photo-preview.has-image {
    border: 3px solid #007EBC;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.photo-upload-text span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.photo-upload-text small {
    font-size: 12px;
    color: #999;
}

/* ================================
   CV UPLOAD ZONE
   ================================ */

.cv-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    border: 2px dashed #c0c0c0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafbfc;
    text-align: center;
}

.cv-upload-zone:hover,
.cv-upload-zone.drag-over {
    border-color: #007EBC;
    background: #f0f8ff;
}

.cv-upload-zone i {
    font-size: 36px;
    color: #007EBC;
    margin-bottom: 10px;
}

.cv-upload-zone p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.cv-upload-zone small {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* CV file info */
.cv-file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
}

.cv-file-details {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    font-weight: 500;
    font-size: 14px;
}

.cv-file-details i {
    font-size: 20px;
}

.btn-icon {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-icon:hover {
    color: #dc3545;
    background: #ffeaea;
}

/* Parsing indicator */
.parsing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: #fff3cd;
    border-radius: 10px;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e0c36a;
    border-top-color: #856404;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ================================
   EXTRACTED SECTIONS & DYNAMIC ENTRIES
   ================================ */

.extracted-section {
    margin-top: 12px;
}

.section-divider {
    border-bottom: 2px solid #007EBC;
    padding-bottom: 6px;
    margin-bottom: 14px;
}

.section-divider h3 {
    color: #007EBC;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.dynamic-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}

.dynamic-list::-webkit-scrollbar {
    width: 4px;
}

.dynamic-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.dynamic-entry {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s;
}

.dynamic-entry:hover {
    border-color: #b0b0b0;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.entry-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 13px;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-remove:hover {
    background: #f8d7da;
}

.entry-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry-fields .form-group label {
    font-size: 12px;
    color: #555;
}

.entry-fields .form-group input,
.entry-fields .form-group textarea {
    padding: 9px 12px;
    font-size: 14px;
}

.entry-fields .form-group textarea {
    min-height: 48px;
}

.checkbox-label.small {
    font-size: 12px;
    margin-top: 4px;
}

.checkbox-label.small input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.empty-text {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding: 16px;
    font-style: italic;
}

/* Add button */
.btn-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border: 2px dashed #c0c0c0;
    border-radius: 10px;
    background: transparent;
    color: #007EBC;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-add:hover {
    border-color: #007EBC;
    background: #f0f8ff;
}

/* ================================
   WIZARD NAVIGATION
   ================================ */

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-wizard {
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background: #f0f0f0;
    color: #555;
}

.btn-prev:hover {
    background: #e0e0e0;
    transform: translateX(-2px);
}

.btn-next {
    background: #007EBC;
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: #006399;
    transform: translateX(2px);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    margin-left: auto;
    font-size: 16px;
    padding: 14px 32px;
}

.btn-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
}

.btn-wizard:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ================================
   WIZARD MESSAGES
   ================================ */

.wizard-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: msgFade 0.3s ease;
}

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

.wizard-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wizard-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* ================================
   CLASSIC REGISTER CONTAINER (Company)
   ================================ */

.register-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
}

.register-container h1 {
    color: #007EBC;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-register {
    background: #007EBC;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #006399;
    transform: scale(1.02);
}

.btn-register:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ================================
   COMPANY REGISTER - PLAN CARDS
   ================================ */

.register-company-wide {
    max-width: 900px;
}

.plans-preview-section {
    margin-bottom: 10px;
}

.plans-preview-subtitle {
    color: #666;
    font-size: 14px;
    margin: 10px 0 18px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 15px;
}

.plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.plan-card:hover {
    border-color: #007EBC;
    box-shadow: 0 4px 20px rgba(0, 126, 188, 0.12);
    transform: translateY(-3px);
}

.plan-card.plan-selected {
    border-color: #007EBC;
    background: #f0f8fd;
    box-shadow: 0 4px 20px rgba(0, 126, 188, 0.15);
}

.plan-card.plan-featured {
    border-color: #007EBC;
    box-shadow: 0 4px 15px rgba(0, 126, 188, 0.12);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: #6c757d;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge-featured {
    background: linear-gradient(135deg, #007EBC, #00A0DC);
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    margin-top: 6px;
}

.plan-price {
    margin-bottom: 14px;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #007EBC;
}

.price-period {
    font-size: 13px;
    color: #888;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 14px;
    font-size: 13px;
}

.plan-features li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.plan-features li i.fa-check {
    color: #28a745;
    font-size: 11px;
    flex-shrink: 0;
}

.plan-features li.feature-disabled {
    color: #bbb;
}

.plan-features li.feature-disabled i {
    color: #ddd;
}

.plan-select-btn {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: #666;
}

.plan-select-btn:hover {
    border-color: #007EBC;
    color: #007EBC;
}

.plan-select-btn.selected {
    background: #007EBC;
    color: white;
    border-color: #007EBC;
}

.plans-note {
    font-size: 12px;
    color: #888;
    text-align: center;
}

.plans-note i {
    color: #007EBC;
    margin-right: 4px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .register-container {
        max-width: 450px;
        padding: 35px;
    }

    .register-container h1 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .wizard-container {
        max-width: 100%;
        margin: 10px;
        padding: 28px 22px;
        border-radius: 16px;
        max-height: 95vh;
    }

    .wizard-stepper {
        margin-bottom: 20px;
    }

    .step-circle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-card h2 {
        font-size: 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .btn-wizard {
        padding: 11px 20px;
        font-size: 14px;
    }

    .register-container {
        max-width: 100%;
        margin: 10px;
        padding: 30px 25px;
        border-radius: 16px;
    }

    .register-container h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .register-form {
        gap: 16px;
    }

    .btn-register {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 700px) {
    .register-company-wide {
        max-width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plan-card {
        padding: 16px 12px;
    }
}

@media (max-width: 480px) {
    .wizard-container {
        margin: 5px;
        padding: 22px 16px;
    }

    .step-card h2 {
        font-size: 18px;
    }

    .step-circle {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .step-line {
        min-width: 16px;
    }

    .btn-wizard {
        padding: 10px 16px;
        font-size: 13px;
    }

    .cv-upload-zone {
        padding: 24px 14px;
    }

    .dynamic-list {
        max-height: 280px;
    }

    .register-container {
        margin: 5px;
        padding: 25px 20px;
    }

    .register-container h1 {
        font-size: 22px;
    }

    .btn-register {
        font-size: 13px;
    }

    .price-amount {
        font-size: 20px;
    }

    .plan-name {
        font-size: 16px;
    }
}

/* ================================
   LOGO UPLOAD - Paso Página de Empresa
   ================================ */

.logo-upload-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px dashed #d0d5dd;
    border-radius: 12px;
    background: #fafbfc;
    transition: border-color 0.2s, background 0.2s;
}

.logo-upload-area.dragover {
    border-color: #0077B5;
    background: #e8f4fd;
}

.logo-preview {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: #adb5bd;
    font-size: 2rem;
}

.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-upload-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-upload-info small {
    color: #888;
    font-size: 0.8rem;
}

.btn-upload-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #0077B5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-upload-logo:hover {
    background: #005f8f;
}

@media (max-width: 480px) {
    .logo-upload-area {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PASO 2: VERIFICACIÓN EMAIL INLINE (OTP)
   ============================================ */

.verify-email-card {
    text-align: center;
}

.verify-icon {
    font-size: 64px;
    margin-bottom: 12px;
    line-height: 1;
}

.verify-email-highlight {
    font-weight: 700;
    color: #0077B5;
    font-size: 1.1rem;
    margin: 4px 0 16px;
    word-break: break-all;
}

/* OTP Input Group */
.otp-input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px 0 20px;
}

.otp-input {
    width: 42px;
    height: 52px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    color: #333;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -moz-appearance: textfield;
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input:focus {
    border-color: #0077B5;
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.15);
    background: #fff;
}

.otp-input:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.otp-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
    user-select: none;
}

/* Verify Button */
.btn-verify-otp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0077B5;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin: 8px 0 16px;
}

.btn-verify-otp:hover:not(:disabled) {
    background: #005f8f;
    transform: translateY(-1px);
}

.btn-verify-otp:disabled {
    background: #a0c4d9;
    cursor: not-allowed;
}

/* Verify Message */
.verify-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 12px 0;
    text-align: center;
}

.verify-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.verify-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Info Box */
.verify-info-box {
    background: #e7f3ff;
    border: 1px solid #b6d4fe;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
    text-align: left;
}

.verify-info-box h4 {
    color: #084298;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.verify-info-box ul {
    color: #084298;
    margin: 0;
    padding-left: 20px;
    font-size: 0.9rem;
}

.verify-info-box li {
    margin-bottom: 4px;
}

/* Resend Section */
.verify-resend-section {
    margin: 20px 0 8px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.verify-resend-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.verify-resend-section .btn-resend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0077B5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

.verify-resend-section .btn-resend:hover:not(:disabled) {
    background: #005885;
}

.verify-resend-section .btn-resend:disabled {
    background: #a0c4d9;
    cursor: not-allowed;
    opacity: 0.8;
}

.verify-resend-message {
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.verify-resend-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.verify-resend-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---- Responsive: stepper 5 pasos ---- */
@media (max-width: 700px) {
    .otp-input {
        width: 36px;
        height: 44px;
        font-size: 1.2rem;
    }

    .otp-input-group {
        gap: 5px;
    }

    .verify-icon {
        font-size: 52px;
    }
}

@media (max-width: 480px) {
    .otp-input {
        width: 30px;
        height: 38px;
        font-size: 1rem;
        border-radius: 6px;
    }

    .otp-input-group {
        gap: 3px;
    }

    .otp-separator {
        font-size: 1rem;
    }

    .verify-icon {
        font-size: 44px;
    }

    .btn-verify-otp {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .verify-info-box {
        padding: 12px;
        font-size: 0.85rem;
    }
}
