/**
 * TransToYou My Account Forms Styles
 * Based on modal-login design for standalone page
 *
 * @package Transtoyou
 * @version 2.0.0
 */


.top-bar-item.log-in,
.top-bar-item.sign-up  {
  display: none;
}

.tty-form-section.active .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
}

/* Animated Background Elements */
.tty-reset-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tty-reset-floating-element {
    position: absolute;
    background: rgba(0, 95, 95, 0.03);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

[data-theme="dark"] .tty-reset-floating-element {
    background: rgba(0, 110, 110, 0.08);
}

.tty-reset-floating-element:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.tty-reset-floating-element:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -250px;
    animation-delay: 5s;
    background: rgba(229, 146, 76, 0.03);
}

.tty-reset-floating-element:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}


/* ===== Age Restriction Popup ===== */
.tty-age-restriction-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tty-age-restriction-popup.active {
    opacity: 1;
    visibility: visible;
}

.tty-age-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tty-age-popup-content {
    position: relative;
    background: var(--tty-bg-primary);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.tty-age-restriction-popup.active .tty-age-popup-content {
    transform: scale(1);
}

.tty-age-popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tty-age-popup-icon i {
    font-size: 40px;
    color: #ef4444;
}

.tty-age-popup-content h3 {
    font-size: 24px;
    color: var(--tty-header-primary);
    margin: 0 0 15px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.tty-age-popup-content p {
    font-size: 16px;
    color: var(--tty-text-primary);
    margin: 0 0 15px;
    line-height: 1.5;
}

.tty-age-popup-info {
    font-size: 14px !important;
    color: var(--tty-text-muted) !important;
    margin-bottom: 25px !important;
}

.tty-age-popup-button {
    background: var(--tty-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Figtree', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tty-age-popup-button:hover {
    background: var(--tty-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 95, 95, 0.2);
}

/* ===== Main Container Structure ===== */
.tty-account-forms-container {
  background: linear-gradient(135deg, var(--tty-bg-primary) 0%, #f0f7f7 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px 100px 20px;
}

.footer-newsletter-container {
  display: none !important;
}

.tty-account-forms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--tty-bg-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-height: 600px;
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 0.6s ease;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ===== Left Side - Forms ===== */
.tty-account-forms-left {
    padding: 50px;
    background: var(--tty-bg-primary);
}

.tty-account-header {
    margin-bottom: 30px;
}

.issl_social_login_heading {
    display: none;
}

.issl_social_login_icon {
    border-radius: 10px !important;
}

.tty-account-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--tty-header-primary);
    margin: 0 0 10px;
    font-family: 'Figtree', sans-serif;
}

.tty-register-title-text {
    display: none;
}

.tty-account-subtitle {
    font-size: 16px;
    color: var(--tty-text-secondary);
    margin: 0;
}

.tty-register-subtitle-text {
    display: none;
}

.tty-feature-icon svg {
    width: 40px;
    fill: var(--tty-text-light);
}

/* ===== Tab Navigation ===== */
.tty-account-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--tty-border-light);
    position: relative;
}

.tty-tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-text-secondary);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.tty-tab-button:hover {
    color: var(--tty-primary);
}

.tty-tab-button.active {
    color: var(--tty-primary);
}

.tty-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--tty-primary);
    width: 100%;
    border-radius: 5px;
}

/* ===== Social Login ===== */
.tty-social-section {
    margin-bottom: 25px;
}

.tty-social-section .issl_social_login_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.issl_social_login_icons_wrapper {
    gap: 20px !important;
}

.tty-divider {
    text-align: center;
    position: relative;
    margin: 15px 0;
}

.tty-divider span {
    background: var(--tty-bg-primary);
    padding: 0 15px;
    color: var(--tty-text-muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.tty-divider::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--tty-border-light);
}

/* ===== Form Sections ===== */
.tty-form-section {
    display: none;
    animation: tty-fadeIn 0.3s ease;
}

.tty-form-section.active {
    display: block;
}

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

/* ===== Form Styling ===== */
.tty-account-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tty-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tty-form-group {
    position: relative;
}

.tty-input-wrapper {
    position: relative;
}

.tty-account-forms-content .tty-input {
  width: 100%;
  height: 56px;
  padding: 16px 20px !important;
    padding-left: 20px;
  padding-left: 45px !important;
  border: 2px solid var(--tty-border-light);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
  background: var(--tty-bg-primary);
  color: var(--tty-text-primary);
  transition: all 0.3s ease;
}

.tty-input:focus {
    outline: none;
    border-color: var(--tty-primary);
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.1);
}

.tty-input:not(:placeholder-shown) ~ .tty-label,
.tty-input:focus ~ .tty-label {
    top: -2px;
    left: 18px;
    font-size: 12px;
    background: var(--tty-bg-primary);
    padding: 0 5px;
    color: var(--tty-primary);
}

.tty-label {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    color: var(--tty-text-muted);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.tty-input-icon {
    position: absolute;
    left: 16px;
    top: 48%;
    transform: translateY(-50%);
    color: var(--tty-text-muted);
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.tty-input:focus ~ .tty-input-icon {
    color: var(--tty-primary);
}

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

.tty-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--tty-text-muted);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    border-radius: 50%;
    font-size: 18px;
}

.tty-password-toggle:hover {
    color: var(--tty-primary);
}

.tty-password-toggle .fas.fa-eye {
    margin-right: -1px;
}

.tty-password-toggle .fa-eye-slash::before {
    margin-right: -1px;
}

/* ===== Form Actions ===== */
.tty-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0 10px;
}

.tty-account-forms-content .tty-toggle-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    width: auto;
    height: auto;
}

.tty-account-forms-content .tty-toggle-switch input[type="checkbox"] {
    display: none;
}

.tty-account-forms-content .tty-toggle-switch .tty-toggle-slider {
  position: relative;
  width: 52px;
  height: 26px;
  background-color: #ccc;
  border-radius: 34px;
  transition: background-color 0.3s ease;
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.tty-form-actions  .tty-toggle-slider {
    position: relative;
    width: 52px;
    height: 26px;
    background-color: #ccc;
    border-radius: 34px;
    transition: background-color 0.3s ease;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.tty-form-actions .tty-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    right: 30px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease, right 0.3s ease;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.tty-form-actions .tty-toggle-switch input:checked + .tty-toggle-slider {
    background-color: #22b189;
}

.tty-form-actions .tty-toggle-switch input:checked + .tty-toggle-slider::before {
    transform: translateX(26px);
}

.tty-form-actions .tty-toggle-switch:hover .tty-toggle-slider {
    transform: scale(1.02);
}

.tty-form-actions .tty-toggle-label-simple {
    color: var(--tty-primary);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.tty-form-actions .tty-forgot-link {
    color: var(--tty-primary);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.tty-form-actions .tty-forgot-link:hover {
    opacity: 0.8;
}

/* ===== Submit Button ===== */
.tty-submit-button {
    height: 56px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
    background: var(--tty-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Figtree', sans-serif;
    cursor: pointer;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tty-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 95, 95, 0.2);
}

.tty-submit-button::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.6s ease;
}

.tty-submit-button:hover::before {
    left: 100%;
}

.tty-submit-button i {
    font-size: 18px;
}

.tty-account-forms-content .tty-form-description {
  margin: 0px;
}

/* ===== Switch Form Link ===== */
.tty-switch-form {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--tty-text-secondary);
}

.tty-switch-form a {
    color: var(--tty-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.tty-switch-form a:hover {
    opacity: 0.8;
}

/* ===== Field Labels ===== */
.tty-field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-text-primary);
}

.tty-tooltip {
    color: var(--tty-primary);
    cursor: help;
    font-size: 18px;
}

/* ===== Radio Group ===== */
.tty-radio-group {
    display: flex;
    gap: 20px;
}

.tty-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
    position: relative;
    color: var(--tty-text-primary);
}

.tty-radio input[type="radio"] {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--tty-border-light);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--tty-bg-primary);
}

.tty-radio input[type="radio"]:hover {
    border-color: var(--tty-secondary);
}

.tty-radio input[type="radio"]:checked {
    border-color: var(--tty-secondary) !important;
    background-color: var(--tty-bg-primary) !important;
}

.tty-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--tty-secondary) !important;
    border-radius: 50%;
}

.tty-radio span {
    font-size: 15px;
    user-select: none;
}

/* ===== Phone Input Group ===== */
.tty-phone-group {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
}

.tty-country-select {
    height: 56px;
    padding: 0 16px;
    border: 2px solid var(--tty-border-light);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    background: var(--tty-bg-primary);
    color: var(--tty-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tty-country-select:focus {
    outline: none;
    border-color: var(--tty-primary);
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.1);
}

/* ===== Select2 Styling ===== */
.tty-phone-group .select2-container {
    width: 100% !important;
}

.tty-phone-group .select2-container .select2-selection--single {
  height: 57px !important;
  border: 2px solid var(--tty-border-light) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  background-color: var(--tty-bg-primary) !important;
  font-family: 'Figtree', sans-serif !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.tty-phone-group .select2-container--focus .select2-selection--single,
.tty-phone-group .select2-container--open .select2-selection--single {
    border-color: var(--tty-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.1) !important;
}

.tty-phone-group .select2-selection__rendered {
    padding-left: 16px !important;
    padding-right: 40px !important;
    line-height: 52px !important;
    color: var(--tty-text-primary) !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.tty-phone-group .select2-selection__arrow {
    height: 52px !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
}

/* ===== Password Strength ===== */
.tty-password-strength {
    margin-top: 8px;
}

.tty-strength-meter {
    display: flex;
    gap: 4px;
    height: 4px;
}

.tty-strength-meter span {
    flex: 1;
    background: var(--tty-border-light);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.tty-strength-meter.weak span:nth-child(1) {
    background: #ff4444;
}

.tty-strength-meter.medium span:nth-child(1),
.tty-strength-meter.medium span:nth-child(2) {
    background: #ffaa44;
}

.tty-strength-meter.strong span:nth-child(1),
.tty-strength-meter.strong span:nth-child(2),
.tty-strength-meter.strong span:nth-child(3) {
    background: #44ff44;
}

.tty-strength-meter.very-strong span {
    background: #00cc44;
}

.tty-strength-text {
    font-size: 12px;
    margin-top: 5px;
    color: var(--tty-text-muted);
}

/* ===== Toggle Label ===== */
.tty-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    user-select: none;
}

.tty-toggle-label small {
    font-size: 14px;
    color: var(--tty-text-muted);
    line-height: 1.3;
}

.desk-mobile-number-info {
    font-size: 14px;
    color: var(--tty-text-muted);
    line-height: 1.3;
    margin-top: -5px;
    margin-bottom: 15px;
}

.desk-biological-sex-info {
    font-size: 14px;
    color: var(--tty-text-muted);
    line-height: 1.3;
    margin-top: 8px;
}

/* ===== Terms Text ===== */
.tty-terms {
    font-size: 14px;
    color: var(--tty-text-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.tty-terms a {
    text-decoration: none;
}

.tty-terms a:hover {
    text-decoration: underline;
}

/* ===== Right Side - Features ===== */
.tty-account-forms-right {
    background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tty-account-forms-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: tty-rotate 20s linear infinite;
}

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

.tty-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tty-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    color: white;
}

.tty-feature-card.active {
    transform: translateX(0);
    opacity: 1;
}

.tty-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tty-feature-icon i {
    font-size: 28px;
    color: white;
}

.tty-feature-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--tty-text-light);
}

.tty-feature-card p,
.tty-quote p {
    color: var(--tty-text-light);
}

.tty-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ===== Testimonial ===== */
.tty-testimonial {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.tty-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    color: white;
    position: relative;
}

.tty-quote i {
    font-size: 24px;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.tty-quote p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px;
    font-style: italic;
}

.tty-quote cite {
    font-size: 14px;
    opacity: 0.8;
    font-style: normal;
}

/* ===== 2FA Verification Styles ===== */
.tty-2fa-wrapper {
    margin-top: 20px;
    animation: tty-fadeIn 0.3s ease;
}

.tty-2fa-input {
    text-align: center;
    font-size: 24px !important;
    letter-spacing: 8px;
    font-weight: 600;
    font-family: 'Courier New', monospace !important;
}

.tty-2fa-help {
    font-size: 14px;
    color: var(--tty-text-muted);
    margin: 10px 0 0 0;
    text-align: center;
}

.tty-2fa-resend {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.tty-2fa-timer {
    color: var(--tty-text-muted);
}

.tty-2fa-timer .timer-seconds {
    font-weight: 600;
    color: var(--tty-primary);
}

.tty-2fa-resend-link {
    color: var(--tty-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.tty-2fa-resend-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== 2FA Setup Screen ===== */
.tty-2fa-setup-wrapper {
    animation: tty-fadeIn 0.3s ease;
}

.tty-2fa-setup-header {
    text-align: center;
    margin-bottom: 30px;
}

.tty-2fa-setup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.tty-2fa-setup-icon i {
    font-size: 40px;
    color: white;
    z-index: 1;
}

.tty-2fa-setup-header h3 {
    font-size: 24px;
    color: var(--tty-header-primary);
    margin: 0 0 10px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.tty-2fa-setup-header p {
    font-size: 16px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.tty-2fa-benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
}

.tty-2fa-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.tty-2fa-benefit-item i {
    font-size: 28px;
    color: var(--tty-primary);
}

.tty-2fa-benefit-item span {
    font-size: 13px;
    color: var(--tty-text-primary);
    font-weight: 500;
}

.tty-2fa-setup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.tty-2fa-verify-button {
height: 56px;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
  color: var(--tty-text-light);
  text-decoration: none;
  border-radius: var(--tty-radius-lg);
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--tty-transition-normal);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.tty-2fa-skip-button {
  height: 48px;
  font-size: 14px;
  color: var(--tty-text-secondary);
  background: transparent;
  border: 2px solid var(--tty-border-light);
  border-radius: 30px;
}

.tty-2fa-skip-button:hover {
    background: var(--tty-bg-secondary);
    border-color: var(--tty-border-medium);
}

/* ===== Loading State ===== */
.tty-loading {
    position: relative;
    pointer-events: none;
}

.tty-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .tty-account-forms-content {
        grid-template-columns: 1fr;
        padding-bottom: 100px;
        box-shadow: none;
        border-radius: 0px;
    }
    
    .tty-account-forms-left {
        padding: 30px 20px;
    }
    
    .tty-account-forms-right {
        display: none;
    }
    
    .tty-account-forms-container {
        padding: 0px;
    }
    
    .tty-account-title {
        font-size: 28px;
    }
    
    .tty-form-row {
        grid-template-columns: 1fr;
    }
    
    .tty-phone-group {
        grid-template-columns: 120px 1fr;
    }
    
    .tty-age-popup-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .tty-age-popup-icon {
        width: 60px;
        height: 60px;
    }
    
    .tty-age-popup-icon i {
        font-size: 30px;
    }
    
    .tty-age-popup-content h3 {
        font-size: 20px;
    }
    
    .tty-age-popup-content p {
        font-size: 14px;
    }
    
    .tty-2fa-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Dark Mode Support ===== */
[data-theme="dark"] .tty-account-forms-content {
    background: var(--tty-bg-primary);
}

[data-theme="dark"] .tty-input {
    background: var(--tty-bg-secondary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-age-popup-content {
    background: #1e1e1e;
}

[data-theme="dark"] .tty-age-popup-icon {
    background: rgba(239, 68, 68, 0.2);
}

[data-theme="dark"] .tty-toggle-slider {
    background-color: #2e2e2e;
}

[data-theme="dark"] .tty-toggle-switch input:checked + .tty-toggle-slider {
    background-color: #006e6e;
}

/* ===== Print styles ===== */
@media print {
    .tty-account-forms-right {
        display: none !important;
    }
}

/* ===== Focus styles for accessibility ===== */
.tty-input:focus-visible,
.tty-submit-button:focus-visible,
.tty-tab-button:focus-visible {
    outline: 2px solid var(--tty-primary);
    outline-offset: 2px;
}

/* ===== Browser compatibility ===== */
@supports not (backdrop-filter: blur(10px)) {
    .tty-feature-card,
    .tty-quote {
        background-color: rgba(0, 95, 95, 0.9);
    }
}

/* Country select - EXACT COPY FROM MODAL */
.tty-country-option,
.tty-country-selection {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tty-country-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

/* Select2 styling - EXACT COPY FROM MODAL */
.tty-select2-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tty-select2-container .select2-selection--single {
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tty-select2-container .select2-selection--single:focus {
    border-color: #005F5F;
    outline: none;
}

.tty-select2-container .select2-selection__rendered {
    padding-left: 12px;
    line-height: 46px;
}

.tty-select2-container .select2-selection__arrow {
    height: 48px;
}