/* Base Styles & Variables */
:root {
    --primary-color: #4361ee;
    --primary-light: #e8efff;
    --primary-light-clear:#d5defd;
    --primary-dark: #3a56d4;
    --secondary-color: #6c63ff;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: #f5f7fa;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

/* Sign-up Container Styles */
.signup-container {
    width: 1000px;
    max-width: 95%;
    margin: 80px auto 40px;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.7s ease-out;
}

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

.left-panel {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.left-panel-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.left-panel-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInLeft 0.7s 0.3s both;
}

.left-panel-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInLeft 0.7s 0.5s both;
}

.features-list {
    margin-bottom: 40px;
    animation: fadeInLeft 0.7s 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 16px;
    margin-right: 15px;
    color: white;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: auto;
    animation: fadeInLeft 0.7s 0.9s both;
    backdrop-filter: blur(5px);
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial .author {
    font-size: 13px;
    opacity: 0.8;
}

.right-panel {
    background-color: white;
}

.form-wrapper {
    padding: 40px;
}

.signup-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gray-800);
    text-align: center;
    position: relative;
    animation: fadeIn 0.7s both;
}

.signup-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Modern Progress Steps */
.progress-container {
    margin-bottom: 30px;
    animation: fadeIn 0.7s 0.3s both;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    max-width: 500px;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--gray-300);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.step-label {
    font-size: 13px;
    color: var(--gray-600);
    transition: var(--transition);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-connector {
    height: 2px;
    width: auto;
    flex-grow: 1;
    background-color: var(--gray-300);
    margin: 0 -20px;
    margin-top: 19px;
    z-index: 0;
    transition: var(--transition);
}

/* Form Styles */
.form-step {
    display: none;
    animation: fadeIn 0.5s;
}

.form-step:first-child {
    display: block;
}

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

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

.step-title {
    margin-bottom: 25px;
    font-size: 20px;
    color: var(--gray-800);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.form-group .required {
    color: var(--danger-color);
}

.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    transition: var(--transition);
    font-size: 16px;
    z-index: 2;
}

.form-control, .form-select {
    padding: 12px 16px 12px 45px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: white;
    width: 100%;
    color: var(--gray-700);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.form-control:focus + .icon, .form-select:focus + .icon {
    color: var(--primary-color);
}

.form-text {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 6px;
}

/* Gender Selector */
.gender-selector {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;              /* Force horizontal alignment */
  width: 100%;
}

.gender-option {
  flex: 1 1 0;                    /* Allow flexible shrinking and growing */
  min-width: 0;                  /* Prevents overflow issues */
  cursor: pointer;
}

.gender-option input[type="radio"] {
  display: none;
}

.gender-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 12px;
  width: 100%;                   /* Fills available space */
  box-sizing: border-box;        /* Ensures padding doesn't overflow */
}

.gender-option input[type="radio"]:checked + .gender-content {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

.gender-icon {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--gray-600);
  transition: var(--transition);
}

.gender-option input[type="radio"]:checked + .gender-content .gender-icon {
  color: var(--primary-color);
}

.gender-option span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  text-align: center;
}


/* Phone Input Customization */
.phone-input-container {
    margin-bottom: 10px;
}

.iti {
    width: 100%;
}

.iti__flag-container:hover .iti__selected-flag {
    background-color: var(--primary-light);
}

.iti__selected-flag {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    transition: var(--transition);
}

#phone {
    padding-left: 90px;
}

/*************************************/
/* Improved password field styling */
.password-container {
    display: flex;
    align-items: stretch; /* Changed from center to stretch */
    position: relative; /* Make sure relative positioning is applied */
    border-radius: var(--border-radius);
    overflow: hidden; /* Hide any potential border overlaps */
    border: 2px solid var(--gray-300);
}

.password-container .form-control {
    flex: 1;
    border: none; /* Remove border from input */
    border-radius: 0;
    margin-right: 0; /* Remove negative margin */
    height: 100%; /* Ensure full height */
    z-index: 1; /* Proper stacking */
}

.toggle-password {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none; /* Remove border from button */
    border-radius: 0;
    background-color: white;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    padding: 0 15px;
    height: auto; /* Let it take height from parent */
}

/* Apply border highlight to container instead of individual elements */
.password-container:focus-within {
    border-color: var(--primary-color); /* Highlight the whole container on focus */
}

/* Remove focus outline from internal elements */
.password-container .form-control:focus,
.toggle-password:focus {
    outline: none;
    box-shadow: none;
}
/*************************************/

.toggle-password:hover {
    background-color: var(--gray-100);
}

/* Password Strength Meter */
.password-strength {
    margin: 15px 0 10px;
}

.strength-meter {
    background-color: var(--gray-200);
    height: 6px;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.strength-meter-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0;
}

.strength-meter-fill.weak {
    background-color: var(--danger-color);
    width: 33%;
}

.strength-meter-fill.medium {
    background-color: var(--warning-color);
    width: 66%;
}

.strength-meter-fill.strong {
    background-color: var(--success-color);
    width: 100%;
}

.strength-text {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.password-requirements {
    font-size: 12px;
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 5px;
}

.password-requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    color: var(--gray-600);
    transition: var(--transition);
}

.password-requirements li i {
    font-size: 10px;
    margin-right: 5px;
    color: var(--gray-500);
    transition: var(--transition);
}

.password-requirements .met {
    color: var(--success-color);
}

.password-requirements .met i {
    color: var(--success-color);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.form-navigation button {
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-secondary {
    border-color: var(--gray-300);
    color: var(--gray-700);
    background-color: white;
}

.btn-outline-secondary:hover {
    border-color: var(--gray-400);
    background-color: var(--gray-100);
}

.btn-success {
    background: linear-gradient(135deg, #2ecc71, var(--success-color));
    border: none;
    padding: 14px 30px;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Success Modal */
.success-icon {
    font-size: 70px;
    color: var(--success-color);
    margin: 0 auto;
    display: block;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.modal-header .btn-close {
    color: white;
    opacity: 0.8;
}

.puic-container {
    background-color: var(--gray-100);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.puic-code {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 1px;
    background-color: white;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
}

.copy-btn {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
    background-color: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    transition: var(--transition);
}

.copy-btn:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
}

.copy-btn:active {
    transform: translateY(1px);
}

/* 4th step:Payment methods style*/
/* Payment Step Styles */
#step4 {
    max-width: 900px;
    margin: 0 auto;
}

.payment-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

/* Payment Method Selector */
.payment-method-selector {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: hidden;
}

.payment-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.payment-nav-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.payment-nav-btn i {
    font-size: 1.5rem;
}

.payment-nav-btn.active {
    color: #0d6efd;
    background-color: #fff;
    box-shadow: 0 2px 0 #0d6efd;
}

.payment-nav-btn:hover:not(.active) {
    background-color: #f1f3f5;
    color: #495057;
}

/* Payment Sections */
.payment-section {
    display: none;
    padding: 2rem;
}

.payment-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Credit Card Form */
.card-wrapper-container {
    margin-bottom: 2rem;
    min-height: 200px;
    perspective: 1000px;
}

.credit-card-form {
    max-width: 500px;
    margin: 0 auto;
}

.card-brands {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.card-brands img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.card-brands img:hover {
    opacity: 1;
}

.cvc-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
    color: #6c757d;
    cursor: pointer;
}

.tooltip-content {
    position: absolute;
    width: 200px;
    background: white;
    border-radius: 6px;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    right: 0;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cvc-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-content img {
    width: 100%;
    margin-bottom: 0.5rem;
}

.tooltip-content p {
    margin: 0;
    font-size: 0.75rem;
    color: #495057;
}

/* Alternative Payment Methods */
.alternative-payment {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-logo {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.crypto-logos {
    display: flex;
    gap: 1.5rem;
}

.payment-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1.5rem;
}

.btn-paypal {
    background-color: #003087;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-paypal:hover {
    background-color: #001f6b;
    color: white;
}

.btn-apple-pay {
    background-color: #000;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apple-pay:hover {
    background-color: #333;
    color: white;
}

.btn-google-pay {
    background-color: #4285f4;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google-pay:hover {
    background-color: #3367d6;
    color: white;
}

.crypto-options-container {
    width: 100%;
    position: relative;
    padding: 0 2rem; /* Space for the arrows */
}

.crypto-options {
    overflow-x: auto;
    display: flex;
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    max-width: 100%;
}

/* Hide scrollbar for Chrome/Safari */
.crypto-options::-webkit-scrollbar {
    display: none;
}

/* Make scroll wheel work on the container for non-touch devices */
.crypto-options {
    overflow-x: auto;
    overflow-y: hidden;
}

.btn-crypto {
    background-color: #ffffff;
    color: #212529;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    scroll-snap-align: center;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.btn-crypto:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.btn-crypto:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-crypto.active {
    background-color: #f0f7ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Add crypto icon to each button */
.btn-crypto::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.5rem;
}

.btn-crypto[data-crypto="btc"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f7931a"><path d="M23.638 14.904c-1.602 6.425-8.113 10.342-14.542 8.736C2.67 22.033-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548v-.002zm-6.736-4.475c.19-.86-.5-1.33-1.35-1.644l.28-1.105-1.547-.387-.272 1.08c-.407-.1-.825-.195-1.24-.288l.273-1.09-1.55-.386-.28 1.102a22.6 22.6 0 0 1-.987-.23l.002-.01-2.13-.535-.414 1.643s.5.114.488.12c.712.18.84.66.82 1.04l-.822 3.3c-.05.12-.195.3-.5.232.01.015-.488-.122-.488-.122l-.67 1.685 2.01.502c.375.094.74.194 1.1.288l-.28 1.125 1.546.387.272-1.086c.425.112.836.217 1.238.316L11.2 16 12.75 16.384l.28-1.125c2.664.504 4.668.3 5.513-2.105.683-1.94-.034-3.054-1.442-3.8.513-.118 1.688-.565 1.8-1.923zm-3.2 4.2c-.483 1.936-3.766.89-4.827.628l.86-3.455c1.06.266 4.462.794 3.967 2.827zm.485-5.032c-.444 1.76-3.18.866-4.067.646l.786-3.11c.890.22 3.743.632 3.28 2.464z"></path></svg>');
}

.btn-crypto[data-crypto="eth"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23627eea"><path d="M11.944 17.97L4.58 13.62 11.943 24l7.37-10.38-7.372 4.35h.003zM12.056 0L4.69 12.223l7.365 4.354 7.365-4.35L12.056 0z"></path></svg>');
}

.btn-crypto[data-crypto="usdc"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232775ca"><path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="%232775ca"/><path d="M15.09 7.508a6.09 6.09 0 0 0-6.086 0L7.86 8.252l-.95.548v6.4l.95.548 1.144.744a6.09 6.09 0 0 0 6.086 0l1.144-.744.95-.548v-6.4l-.95-.548-1.144-.744zm.839 6.992l-.845.488-1.08.623a4.737 4.737 0 0 1-4.009 0l-1.08-.623-.845-.488V9.5l.846-.488 1.08-.623a4.737 4.737 0 0 1 4.008 0l1.08.623.845.488v4.999z" fill="%23fff"/><path d="M12 10.038a1.962 1.962 0 1 0 0 3.925 1.962 1.962 0 0 0 0-3.925zm0 3.341a1.379 1.379 0 1 1 0-2.757 1.379 1.379 0 0 1 0 2.757z" fill="%23fff"/></svg>');
}

.btn-crypto[data-crypto="usdt"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2326a17b"><path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="%2326a17b"/><path d="M13.44 12.594v-.001a22.536 22.536 0 0 1-1.444.058c-.522 0-1.026-.025-1.473-.06v.002C6.88 12.25 4 11.38 4 10.335c0-1.045 2.88-1.914 6.523-2.257V10.5c.452.042.962.07 1.494.07.541 0 1.062-.028 1.52-.073v-2.42C17.113 8.419 20 9.29 20 10.334c0 1.046-2.887 1.917-6.56 2.26zm0-3.333v.001c0 .193-1.45.348-3.23.348-1.781 0-3.228-.155-3.229-.348v-.002c0-.192 1.448-.347 3.23-.347 1.78 0 3.229.155 3.229.348zm7.36-1.12l-.013-.783c-.016-.77-7.486-.44-7.52-.44l.01.773c0 .006 1.65-.21 4.108-.21 2.457 0 3.414.242 3.414.66z" fill="%23fff"/></svg>');
}

.btn-crypto[data-crypto="sol"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="10.957" y1="0" x2="10.957" y2="22.061"><stop offset="0" stop-color="%239945ff"/><stop offset=".5" stop-color="%238752f3"/><stop offset="1" stop-color="%235b3cd3"/></linearGradient><path d="M5.558 18.296l2.8-1.447c.144-.077.31-.077.454 0l5.673 2.94c.144.078.31.078.454 0l3.235-1.673c.144-.078.232-.224.232-.379V7.6c0-.155-.088-.301-.232-.379l-3.235-1.673a.495.495 0 0 0-.454 0l-3.235 1.673a.428.428 0 0 0-.232.38v5.835c0 .155-.088.301-.232.379l-2.8 1.447a.495.495 0 0 1-.454 0l-2.8-1.447a.428.428 0 0 1-.232-.38V8.602c0-.156.088-.301.232-.38l2.8-1.446a.495.495 0 0 1 .454 0l5.673 2.94c.144.077.31.077.454 0l2.8-1.448a.495.495 0 0 0 .454 0l2.8-1.446a.428.428 0 0 0 .232-.38V3.765c0-.156-.088-.301-.232-.38L18.944 1.94a.495.495 0 0 0-.454 0L5.558 8.223a.428.428 0 0 0-.232.38v9.315c0 .155.088.301.232.379z" fill="url(%23a)"/></svg>');
}

/* Navigation arrows */
.crypto-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    color: #0d6efd;
}

.crypto-scroll-arrow:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.crypto-scroll-arrow.left {
    left: 0;
}

.crypto-scroll-arrow.right {
    right: 0;
}

.crypto-scroll-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Visual indicator for scrollable content */
.scroll-indicator {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #dee2e6;
    transition: all 0.3s ease;
}

.scroll-indicator-dot.active {
    background-color: #0d6efd;
    width: 10px;
    border-radius: 3px;
}

.payment-note {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Subscription Cards */
.subscription-options {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.subscription-options h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: #212529;
}

.subscription-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.subscription-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.subscription-card.recommended {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0d6efd;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.card-header h5 {
    margin-bottom: 1rem;
    color: #212529;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.period {
    color: #6c757d;
    margin-left: 0.25rem;
}

.card-features {
    padding: 1.5rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.card-features li i {
    color: #28a745;
    margin-right: 0.75rem;
}

.card-select {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.plan-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
}

.plan-select .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
}

.plan-select input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.plan-select input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
}

/* Billing Toggle */
.billing-cycle-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.billing-label {
    font-weight: 500;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0d6efd;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Secure Payment Notice */
.secure-payment-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.secure-icon {
    color: #28a745;
    font-size: 1.5rem;
}
/* ----------------------End ofayment ment methods----------------------------------------------------  */

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.complete-registration {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
}

/* Login Link */
.signin-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.signin-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form Error States */
.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 13px;
    color: var(--danger-color);
    animation: fadeIn 0.3s;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .left-panel {
        display: none;
    }
    
    .signup-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .step-progress {
        max-width: 100%;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .password-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 20px 15px;
    }
    
    .signup-title {
        font-size: 24px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .form-control, .form-select {
        font-size: 15px;
        padding: 10px 15px 10px 40px;
    }
    
    .input-with-icon .icon {
        font-size: 14px;
        left: 12px;
    }
}

/* Animations and Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 0.8s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Telephone Input Custom Styles */
.iti__country-list {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    font-size: 14px;
}

.iti__country {
    padding: 10px 12px;
    transition: var(--transition);
}

.iti__country:hover {
    background-color: var(--primary-light);
}

.iti__active {
    background-color: var(--primary-light);
}

.iti__country-name {
    font-weight: 500;
}

.iti__dial-code {
    color: var(--primary-color);
}

.iti__flag-container:focus-within {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    border-radius: var(--border-radius);
}

/* Select2 Customization */
.select2-container--bootstrap-5 .select2-selection {
    padding-left: 40px;
    min-height: 47px;
    display: flex;
    align-items: center;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__option--highlighted {
    background-color: var(--primary-light);
    color: var(--gray-800);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__option--selected {
    background-color: var(--primary-color);
    color: white;
}

/* Focus States and Accessibility */
.form-control:focus-visible,
.form-select:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Checkbox Customization */
.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    border: 2px solid var(--gray-400);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    border-color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

/* Card Hover Effects */
.gender-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Loading States */
.btn.processing {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.processing::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    left: calc(50% - 0.5em);
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/**************************DatePicker Styles*/
:root {
    --primary-color: #4361ee;
    --danger-color: #f72585;
    --input-border-color: #ced4da;
    --input-bg-color: #ffffff;
    --input-text-color: #495057;
}

.date-picker {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.date-wrapper {
    display: flex;
    border: 1px solid var(--input-border-color);
    border-radius: 0.375rem;
    overflow: hidden;
}

.date-field {
    position: relative;
    flex-grow: 1;
}

.date-field:not(:last-child) {
    border-right: 1px solid var(--input-border-color);
}

.date-field .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.575rem 2.5rem 0.575rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--input-text-color);
    background-color: var(--input-bg-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: none;
    border-radius: 0;
}

.date-field .form-select:focus {
    outline: none;
    background-color: #f8f9fa;
}

.date-field:first-child .form-select {
    padding-left: 0.75rem;
}

.date-field .form-select:hover {
    background-color: #f1f3f5;
}

.date-field .form-select.changed {
    animation: highlight-field 0.5s ease;
}

@keyframes highlight-field {
    0% {
        background-color: rgba(67, 97, 238, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

.date-picker .form-text.text-muted {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.date-picker .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.date-picker.is-invalid .date-wrapper {
    border-color: var(--danger-color);
}

.date-field.is-invalid::after {
    content: '!';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--danger-color);
    font-weight: bold;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .date-wrapper {
        flex-direction: column;
    }

    .date-field:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--input-border-color);
    }
}

/* Updated Date Picker Styles */

/* Keep the container border but remove individual field borders */
.date-wrapper {
    display: flex;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

/* Remove borders between date fields */
.date-field:not(:last-child) {
    border-right: none;
}

/* Add left padding to all fields for consistent alignment */
.date-field .form-select {
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    background-position: right 10px center;
}

/* Apply focus styling to the container when any select is focused */
.date-field .form-select:focus {
    outline: none;
    box-shadow: none; /* Remove default focus shadow */
    background-color: transparent; /* Keep background transparent */
}

/* Apply focus styling to the wrapper when any select is focused */
.date-field .form-select:focus-within,
.date-field .form-select:focus {
    background-color: transparent;
}

/* When any select inside the wrapper is focused, highlight the wrapper */
.date-wrapper:has(.form-select:focus) {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Override any Select2 specific styling that might interfere */
.select2-container--bootstrap-5 .select2-selection {
    border: none !important;
    box-shadow: none !important;
    min-height: 46px;
}

/* Make the Select2 container within our date-field full width */
.date-field .select2.select2-container {
    width: 100% !important;
}

/* Remove border from Select2 dropdown to match our styling */
.date-field .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.date-field .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border: none !important;
    box-shadow: none !important;
}

/* When using Select2, we need to style the parent wrapper on focus */
.date-wrapper:has(.select2-container--focus) {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Error state for the entire date wrapper */
.date-picker.is-invalid .date-wrapper {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.15);
}

/* Hover effect for the entire date wrapper */
.date-wrapper:hover {
    border-color: var(--gray-400);
}

/* Remove any transitions that might make the effect look strange */
.date-field .form-select,
.date-field .select2-selection {
    transition: none !important;
}

/* For mobile, keep fields side by side */
@media (max-width: 576px) {
    .date-wrapper {
        flex-direction: row;
    }
    
    .date-field .form-select {
        padding: 12px 8px;
        font-size: 14px;
    }
}

/* Select2 Specific Overrides for Date Picker */

/* Force remove all borders from Select2 elements in date fields */
.date-field .select2-container .select2-selection--single,
.date-field .select2-container--bootstrap-5 .select2-selection {
    border: none !important;
    box-shadow: none !important;
    background-image: none;
}

/* Remove all border styles that might be added by Select2 in various states */
.date-field .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.date-field .select2-container--bootstrap-5.select2-container--open .select2-selection,
.date-field .select2-container--default .select2-selection--single,
.date-field .select2-container--default.select2-container--focus .select2-selection--single,
.date-field .select2-container--default.select2-container--open .select2-selection--single {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

#country + .select2-container .select2-selection--single,
#languageEmailPreference + .select2-container .select2-selection--single,
#securityQuestion + .select2-container .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
}

#country + .select2-container .select2-selection--single:focus,
#languageEmailPreference + .select2-container .select2-selection--single:focus,
#securityQuestion + .select2-container .select2-selection--single :focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Ensure our container gets the focus effect when Select2 is focused/open */
.date-wrapper:has(.select2-container--focus),
.date-wrapper:has(.select2-container--open) {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15) !important;
}

/* Match the height of Select2 elements with our regular selects */
.date-field .select2-container .select2-selection--single,
.date-field .select2-container--bootstrap-5 .select2-selection {
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
}

/* Position the Select2 dropdown arrow correctly */
.date-field .select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    top: 0 !important;
    right: 8px !important;
}

/* Fix dropdown styling to match our theme */
.select2-container--bootstrap-5 .select2-dropdown {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow) !important;
}

/* Make sure rendered Select2 appears consistent with our styling */
.date-field .select2-container--bootstrap-5 .select2-selection__rendered {
    padding-left: 16px !important;
    line-height: 46px !important;
    color: var(--gray-700) !important;
}

/* Style for country dropdown options */
.country-option {
    display: flex;
    align-items: center;
    padding: 5px;
}

.country-option .iti__flag {
    margin-right: 10px;
    flex-shrink: 0;
}

.country-option .country-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Add this CSS to restore borders on the Select2 component */
.select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #ced4da; /* Same as Bootstrap form-control border */
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: calc(1.5em + 0.75rem + 2px); /* Match Bootstrap form-control height */
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #86b7fe; /* Bootstrap focus border color */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* Bootstrap focus shadow */
}

/* Error highlighting */
.error-highlight {
    background-color: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

/* Error focus flash */
.error-focus-flash {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Error message fade in */
@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced shake animation */
.shake-error {
    animation: shake 0.6s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}