/* eFundos Login Page Styles */

:root {
    --efundos-primary: #08595D;
    --efundos-primary-green2: #16828A;
    --efundos-primary-dark: #026D61;
    --efundos-page-bg: #F3F4F6;
    --efundos-footer-bg: #08595D;
    --efundos-text-dark: #262626;
    --efundos-text-muted: #6D6D6D;
    --efundos-border: #B0B0B0;
}

/* Login Page Layout */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--efundos-page-bg);
    font-family: 'Inter', sans-serif;
}

/* ==================== HEADER ==================== */
.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 90px;
    background-color: var(--efundos-page-bg);
}

.login-header-logo img {
    width: 150px;
    height: 26px;
}

.login-header-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.login-header-nav a {
    font-weight: 500;
    font-size: 16px;
    color: transparent;
    text-decoration: none;
    line-height: 1.5;
}

/* ==================== MAIN CONTENT ==================== */
.login-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-content-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 88px;
    box-sizing: border-box;
}

/* Left Column - Form */
.login-form-column {
    flex: 0 0 auto;
    width: 46%;
}

.login-section-label {
    font-weight: 600;
    font-size: 12px;
    color: var(--efundos-primary);
    letter-spacing: -0.3px;
    margin: 0 0 16px 0;
}

.login-title {
    font-weight: 600;
    font-size: 32px;
    color: var(--efundos-primary-green2);
    letter-spacing: -0.3px;
    margin: 0 0 16px 0;
    line-height: normal;
}

.login-description {
    font-weight: 400;
    font-size: 18px;
    color: var(--efundos-text-dark);
    line-height: 30px;
    letter-spacing: -0.3px;
    margin: 0 0 32px 0;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 324px;
}

.login-form-label {
    font-weight: 400;
    font-size: 16px;
    color: var(--efundos-text-muted);
    line-height: 1.5;
    margin: 0;
}

.login-form-input {
    width: 100%;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--efundos-text-dark);
    border: 1px solid var(--efundos-border);
    border-radius: 4px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    min-width: 40px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form-input:focus {
    outline: none;
    border-color: var(--efundos-primary-green2);
    box-shadow: 0 0 0 2px rgba(22, 130, 138, 0.15);
}

.login-form-input::placeholder {
    color: var(--efundos-text-muted);
}

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

.login-input-password-wrapper .login-form-input {
    padding-right: 40px;
}

.login-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forgot password link */
.login-forgot-password {
    border-top: 1px solid #E5E7EB;
    padding-top: 12px;
    width: 100%;
}

.login-forgot-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--efundos-primary);
    text-decoration: none;
    letter-spacing: -0.15px;
    line-height: 20px;
    display: inline;
}

.login-forgot-link:hover {
    text-decoration: underline;
    color: var(--efundos-primary);
}

/* Back to login link */
.forgot-back-link {
    margin-top: 8px;
}

.forgot-back-link .login-forgot-link {
    white-space: normal;
}

/* Submit button */
.login-form-actions {
    display: flex;
    align-items: center;
}

.login-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--efundos-primary-dark);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.27;
    height: 40px;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-submit-btn:hover {
    background-color: #065053;
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

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

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

/* Error Alert */
.login-error-alert {
    background-color: #FEE2E2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #DC2626;
    font-size: 0.9rem;
    max-width: 324px;
}

/* Right Column - Illustration */
.login-illustration-column {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.login-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

/* Validation */
.login-validation-error {
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Footer - Same as Landing Page */
.login-footer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 42px 90px;
    background-color: var(--efundos-footer-bg);
    color: #FFFFFF;
    margin-top: auto;
}

.login-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 42px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.7);
    gap: 20px;
}

.login-footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.login-footer-logo {
    height: 24px;
    width: auto;
}

.login-footer-copyright {
    font-size: 14px;
    opacity: 0.9;
}

.login-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.login-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    line-height: 150%;
}

.login-footer-link:hover {
    opacity: 0.8;
    color: #FFFFFF;
}

.login-footer-link img {
    width: 30px;
    height: 30px;
}

.login-footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    line-height: 150%;
}

.login-footer-badge:hover {
    opacity: 0.8;
    color: #FFFFFF;
}

.login-footer-badge img {
    width: 85px;
    height: 30px;
}

/* ==================== CONFIRMATION PAGES ==================== */

.confirmation-actions {
    margin-top: 32px;
}

.confirmation-link {
    text-decoration: none;
    display: inline-flex;
}

.confirmation-link:hover {
    text-decoration: none;
    color: #FFFFFF;
}

/* ==================== REGISTER PAGE ==================== */

/* Register form column - wider to accommodate two-column fields */
.register-form-column {
    width: 50%;
}

.register-form {
    gap: 24px;
}

/* Two-column field rows */
.register-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.register-form-group-half {
    flex: 1 1 0;
    max-width: none;
}

.register-error-alert {
    max-width: none;
}

/* Checkbox */
.register-checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    gap: 4px;
}

.register-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--efundos-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.register-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid var(--efundos-border);
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--efundos-primary-dark);
}

.register-terms-link {
    font-weight: 600;
    color: var(--efundos-primary-dark);
    text-decoration: underline;
}

.register-terms-link:hover {
    color: var(--efundos-primary);
}

/* Terms & Conditions Modal */
.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.terms-modal {
    background-color: #FFFFFF;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.terms-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.terms-modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--efundos-primary);
    margin: 0;
    line-height: normal;
}

.terms-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.terms-modal-close:hover {
    background-color: #F3F4F6;
}

.terms-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--efundos-text-dark);
    line-height: 1.6;
}

.terms-modal-body h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--efundos-primary);
    margin: 24px 0 8px 0;
}

.terms-modal-body h3:first-child {
    margin-top: 0;
}

.terms-modal-body p {
    margin: 0 0 16px 0;
}

.terms-modal-footer {
    padding: 16px 32px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

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

/* At 1300px: Footer links stack vertically */
@media (max-width: 1300px) {
    .login-footer-right {
        flex-direction: column;
        align-items: flex-end;
    }
}

/* At 1200px: Stack form and illustration vertically */
@media (max-width: 1200px) {
    .login-header {
        padding: 32px 42px;
    }

    .login-content-inner {
        flex-direction: column;
        padding: 40px 42px;
        gap: 40px;
    }

    .login-form-column {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .register-form-column {
        width: 100%;
    }

    .login-illustration-column {
        max-width: 400px;
    }

    .login-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .login-footer-left {
        flex-direction: column;
    }

    .login-footer-right {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .login-header {
        padding: 24px;
    }

    .login-header-nav {
        gap: 24px;
    }

    .login-content-inner {
        padding: 24px;
    }

    .login-title {
        font-size: 26px;
    }

    .login-description {
        font-size: 16px;
    }

    .login-form {
        max-width: 100%;
    }

    .login-illustration-column {
        display: none;
    }

    .register-form-row {
        flex-direction: column;
        gap: 24px;
    }

    .login-footer {
        padding: 32px 24px;
    }

    .login-footer-content {
        padding-bottom: 24px;
    }
}

/* ========================================
   Logout Page Styles
   ======================================== */

.logout-card {
    text-align: center;
    padding: 40px 42px;
}

.logout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--efundos-primary);
    color: var(--efundos-primary);
    margin-bottom: 1.5rem;
}

.logout-icon svg {
    width: 32px;
    height: 32px;
}

.logout-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--efundos-text-dark);
    margin-bottom: 0.5rem;
}

.logout-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--efundos-text-muted);
    margin-bottom: 1.5rem;
}

.logout-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.logout-cancel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--efundos-primary);
    background-color: transparent;
    border: 1px solid var(--efundos-primary);
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.logout-cancel-btn:hover {
    background-color: rgba(22, 130, 138, 0.1);
    color: var(--efundos-primary);
    text-decoration: none;
}

.logout-confirm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #08595D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.logout-confirm-btn:hover {
    background-color: #065053;
}

@media (max-width: 480px) {
    .logout-actions {
        flex-direction: column;
    }

    .logout-cancel-btn,
    .logout-confirm-btn {
        width: 100%;
    }
}

/* ========================================
   Authorize Page Styles
   ======================================== */

.authorize-card {
    text-align: center;
    padding: 40px 42px;
}

.authorize-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--efundos-primary);
    color: var(--efundos-primary);
    margin-bottom: 1.5rem;
}

.authorize-icon svg {
    width: 32px;
    height: 32px;
}

/* User Info Box */
.authorize-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F0F5F5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
}

.authorize-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--efundos-primary);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.authorize-user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.authorize-user-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--efundos-text-dark);
}

.authorize-user-email {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--efundos-text-muted);
}

/* Question */
.authorize-question {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--efundos-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.authorize-question strong {
    color: var(--efundos-primary);
}

/* Scopes Section */
.authorize-scopes {
    background-color: #F5F7F7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 1rem;
    text-align: left;
    border-left: 3px solid #D1D5DB;
}

.authorize-scopes-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--efundos-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.authorize-scopes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.authorize-scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: 0.8rem;
    color: var(--efundos-text-dark);
}

.authorize-scope-badge svg {
    color: var(--efundos-text-muted);
}

/* Warning Alert */
.authorize-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #FEF3CD;
    border: 1px solid #FFEEBA;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.authorize-warning svg {
    color: #856404;
    flex-shrink: 0;
    margin-top: 2px;
}

.authorize-warning p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

/* Action Buttons */
.authorize-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.authorize-deny-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--efundos-primary);
    background-color: transparent;
    border: 1px solid var(--efundos-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.authorize-deny-btn:hover {
    background-color: rgba(22, 130, 138, 0.1);
}

.authorize-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #08595D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.authorize-accept-btn:hover {
    background-color: #065053;
}

@media (max-width: 480px) {
    .authorize-card {
        padding: 24px 20px;
    }

    .authorize-actions {
        flex-direction: column;
    }

    .authorize-deny-btn,
    .authorize-accept-btn {
        width: 100%;
    }

    .authorize-user-info {
        flex-direction: column;
        text-align: center;
    }

    .authorize-user-details {
        align-items: center;
        text-align: center;
    }
}

/* ========================================
   Verify Page Styles
   ======================================== */

.verify-card {
    text-align: center;
    padding: 40px 42px;
}

/* Verify Icons */
.verify-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--efundos-primary);
    color: var(--efundos-primary);
    margin-bottom: 1.5rem;
}

.verify-icon svg {
    width: 32px;
    height: 32px;
}

.verify-icon-error {
    border-color: #DC2626;
    color: #DC2626;
}

.verify-icon-success {
    border-color: var(--efundos-primary);
    color: var(--efundos-primary);
}

/* Error Alert */
.verify-error-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #FEE2E2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.verify-error-alert > svg {
    color: #DC2626;
    flex-shrink: 0;
    margin-top: 2px;
}

.verify-error-content {
    flex: 1;
}

.verify-error-content strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 4px;
}

.verify-error-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #DC2626;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.verify-error-code {
    display: inline-block;
    font-family: 'Inter', monospace;
    font-size: 0.75rem;
    color: #991B1B;
    background-color: #FECACA;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Form Elements */
.verify-form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.verify-form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--efundos-text-dark);
    margin-bottom: 0.5rem;
}

.verify-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: 2px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background-color: #FFFFFF;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.verify-form-input:focus {
    outline: none;
    border-color: var(--efundos-primary);
    box-shadow: 0 0 0 3px rgba(22, 130, 138, 0.15);
}

.verify-form-input::placeholder {
    color: #9CA3AF;
    letter-spacing: 4px;
}

.verify-form-hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--efundos-text-muted);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.verify-submit-btn {
    width: 100%;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #08595D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
}

.verify-submit-btn:hover {
    background-color: #065053;
}

/* Confirmation State */
.verify-question {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--efundos-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.verify-question strong {
    color: var(--efundos-primary);
}

/* Scopes Section */
.verify-scopes {
    background-color: #F5F7F7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 1rem;
    text-align: left;
    border-left: 3px solid #D1D5DB;
}

.verify-scopes-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--efundos-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.verify-scopes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.verify-scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: 0.8rem;
    color: var(--efundos-text-dark);
}

.verify-scope-badge svg {
    color: var(--efundos-text-muted);
}

/* Warning Alert */
.verify-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #FEF3CD;
    border: 1px solid #FFEEBA;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.verify-warning > svg {
    color: #856404;
    flex-shrink: 0;
    margin-top: 2px;
}

.verify-warning-content {
    flex: 1;
}

.verify-warning-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #856404;
    margin: 0;
    line-height: 1.4;
}

.verify-user-code {
    display: inline-block;
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #856404;
    background-color: rgba(255, 238, 186, 0.5);
    padding: 6px 12px;
    border-radius: 4px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.verify-warning-hint {
    font-size: 0.8rem !important;
    margin-top: 8px !important;
}

/* Action Buttons */
.verify-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.verify-deny-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--efundos-primary);
    background-color: transparent;
    border: 1px solid var(--efundos-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.verify-deny-btn:hover {
    background-color: rgba(22, 130, 138, 0.1);
}

.verify-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #08595D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.verify-accept-btn:hover {
    background-color: #065053;
}

@media (max-width: 480px) {
    .verify-card {
        padding: 24px 20px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .verify-deny-btn,
    .verify-accept-btn {
        width: 100%;
    }
}
