/* ///////////////////////////////////////////////// */
/* ////////////////// LOGIN PAGE ////////////////////*/
/* ///////////////////////////////////////////////// */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    height: -webkit-fill-available;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #e0f2fe, #f0f9ff);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

input::placeholder {
  color: #999; /* Example: Change color to a darker grey */
  opacity: .5; /* Ensure full opacity, especially for Firefox */
}

/* Minimal Person with Cash Logo Animation */
.logo-animation-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 15px;
    position: relative;
    height: 100px;
    text-decoration: none;
    transition: all .3s;
}
.logo-animation-logo-container:hover{
    transform:scale3d(.9,.9,.9);
}

.logo-animation-person-cash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.logo-animation-person-icon {
    font-size: 40px;
    color: rgba(102, 126, 234, 0.8);
    animation: loginPersonFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.logo-animation-cash-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 3;
}

.logo-animation-cash-item {
    position: absolute;
    opacity: 0;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Colors for different item types */
.logo-animation-cash-item.bill {
    color: var(--success);
}

.logo-animation-cash-item.coin {
    color: var(--warning);
}

.logo-animation-cash-item.video {
    color: #3b82f6;
}

.logo-animation-cash-item.game {
    color: #8b5cf6;
}

.logo-animation-cash-item.special {
    color: #ec4899;
}

/* Position cash items at different sides of the person */
.logo-animation-cash-item:nth-child(1) {
    top: 50%;
    left: 100%;
    animation: loginCashFloatRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 0s;
}

.logo-animation-cash-item:nth-child(2) {
    top: 50%;
    left: 0%;
    animation: loginCashFloatLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 0.6s;
}

.logo-animation-cash-item:nth-child(3) {
    top: 50%;
    left: 100%;
    animation: loginCashFloatRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 1.2s;
}

.logo-animation-cash-item:nth-child(4) {
    top: 50%;
    left: 0%;
    animation: loginCashFloatLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 1.8s;
}

.logo-animation-cash-item:nth-child(5) {
    top: 50%;
    left: 100%;
    animation: loginCashFloatRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 2.4s;
}

.logo-animation-cash-item:nth-child(6) {
    top: 50%;
    left: 0%;
    animation: loginCashFloatLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 3.0s;
}

.logo-animation-cash-item:nth-child(7) {
    top: 50%;
    left: 100%;
    animation: loginCashFloatRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 3.6s;
}

.logo-animation-cash-item:nth-child(8) {
    top: 50%;
    left: 0%;
    animation: loginCashFloatLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 4.2s;
}

.logo-animation-cash-item:nth-child(9) {
    top: 50%;
    left: 100%;
    animation: loginCashFloatRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 4.8s;
}

.logo-animation-cash-item:nth-child(10) {
    top: 50%;
    left: 0%;
    animation: loginCashFloatLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 5.4s;
}

.logo-animation-logo-text-container {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.logo-animation-logo-text {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.2;
    position: relative;
    letter-spacing: -0.5px;
    animation: loginTextPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-top: 18px;
}

.logo-animation-logo-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500;
    opacity: 0.9;
    animation: loginSubtitleFade 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
}

/* Minimal Person with Cash Animation Keyframes */
@keyframes loginPersonFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes loginCashFloatRight {
    0% {
        opacity: 0;
        transform: translate(0, -50%) scale(0.3) rotate(0deg);
    }
    10% {
        opacity: 0.3;
        transform: translate(15px, -60px) scale(0.5) rotate(5deg);
    }
    20% {
        opacity: 0.7;
        transform: translate(35px, -75px) scale(0.8) rotate(10deg);
    }
    30% {
        opacity: 1;
        transform: translate(60px, -95px) scale(1) rotate(15deg);
    }
    40% {
        opacity: 1;
        transform: translate(90px, -120px) scale(1.1) rotate(20deg);
    }
    50% {
        opacity: 1;
        transform: translate(130px, -150px) scale(1.2) rotate(25deg);
    }
    60% {
        opacity: 0.9;
        transform: translate(180px, -185px) scale(1.1) rotate(30deg);
    }
    70% {
        opacity: 0.7;
        transform: translate(240px, -225px) scale(0.9) rotate(35deg);
    }
    80% {
        opacity: 0.5;
        transform: translate(310px, -270px) scale(0.7) rotate(40deg);
    }
    90% {
        opacity: 0.2;
        transform: translate(380px, -320px) scale(0.5) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translate(450px, -380px) scale(0.3) rotate(50deg);
    }
}

@keyframes loginCashFloatLeft {
    0% {
        opacity: 0;
        transform: translate(0, -50%) scale(0.3) rotate(0deg);
    }
    10% {
        opacity: 0.3;
        transform: translate(-15px, -60px) scale(0.5) rotate(-5deg);
    }
    20% {
        opacity: 0.7;
        transform: translate(-35px, -75px) scale(0.8) rotate(-10deg);
    }
    30% {
        opacity: 1;
        transform: translate(-60px, -95px) scale(1) rotate(-15deg);
    }
    40% {
        opacity: 1;
        transform: translate(-90px, -120px) scale(1.1) rotate(-20deg);
    }
    50% {
        opacity: 1;
        transform: translate(-130px, -150px) scale(1.2) rotate(-25deg);
    }
    60% {
        opacity: 0.9;
        transform: translate(-180px, -185px) scale(1.1) rotate(-30deg);
    }
    70% {
        opacity: 0.7;
        transform: translate(-240px, -225px) scale(0.9) rotate(-35deg);
    }
    80% {
        opacity: 0.5;
        transform: translate(-310px, -270px) scale(0.7) rotate(-40deg);
    }
    90% {
        opacity: 0.2;
        transform: translate(-380px, -320px) scale(0.5) rotate(-45deg);
    }
    100% {
        opacity: 0;
        transform: translate(-450px, -380px) scale(0.3) rotate(-50deg);
    }
}

@keyframes loginTextPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

@keyframes loginSubtitleFade {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

.login-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    overflow: hidden;
}

/* Hero Section */
.login-hero-section {
    text-align: center;
    margin-bottom: 16px;
}

.login-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: loginPulse 4s ease-in-out infinite;
}

.login-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.login-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Main Content */
.login-content {
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

/* Form */
.login-form {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.login-form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.login-form-group {
    margin-bottom: 24px;
    position: relative;
}

.login-form-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.login-form-label i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 16px;
}

.login-form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.login-form-input.error {
    border-color: var(--danger);
}

/* Password Toggle */
.login-password-wrapper {
    position: relative;
}

.login-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s ease;
}

.login-password-toggle:hover {
    color: var(--primary);
}

/* Error Messages */
.login-error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.login-error-message.show {
    display: block;
}

/* Remember Me & Forgot Password */
.login-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.login-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-remember-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.login-remember-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.login-forgot-password {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.login-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
}

.login-submit-btn:hover::before {
    left: 100%;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.login-divider-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

/* Social Login */
.login-social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.login-social-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.login-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-social-btn.google {
    border-color: #ea4335;
    color: #ea4335;
}

.login-social-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.login-social-btn.apple {
    border-color: #000;
    color: #000;
}

/* Signup Link */
.login-signup-link {
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    color: var(--gray);
}

.login-signup-link a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-signup-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Terms and Conditions */
.login-terms {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 24px;
    line-height: 1.5;
}

.login-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-terms a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/* Mobile Responsive */
@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .login-hero-section {
        padding: 25px 16px;
        margin-bottom: 0px;
    }
    
    .login-hero-title {
        font-size: 20px;
    }
    
    .login-content {
        padding: 0 20px 25px;
    }
    
    .login-form {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .login-form-title {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .login-form-group {
        margin-bottom: 20px;
    }
    
    .login-form-input {
        padding: 14px;
        font-size: 15px;
    }
    
    .login-submit-btn {
        padding: 16px;
        font-size: 15px;
    }

    
    .login-social-login {
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .login-container {
        padding: 10px 0;
    }
    
    .login-hero-section {
        padding: 20px 14px;
        margin-bottom: 0px;
    }
    
    .login-hero-title {
        font-size: 18px;
    }
    
    /*.login-content {*/
    /*    padding: 0 14px 25px;*/
    /*}*/
    
    .login-form {
        padding: 20px 16px;
        border-radius: 18px;
    }
    
    .login-form-title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .login-form-label {
        font-size: 13px;
    }
    
    .login-form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .login-form-group {
        margin-bottom: 18px;
    }
    

    
    .login-form-options {
        gap: 12px;
    }
}

/* ///////////////////////////////////////////////// */
/* ////////////////// SIGNUP PAGE ///////////////////*/
/* ///////////////////////////////////////////////// */


.signup-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    overflow: hidden;
}


/* Hero Section */
.signup-hero-section {
    text-align: center;
    margin-bottom: 24px;
}

.signup-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: signupPulse 4s ease-in-out infinite;
}

.signup-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.signup-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Main Content */
.signup-content {
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}


/* Form */
.signup-form {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.signup-form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.signup-form-group {
    margin-bottom: 24px;
    position: relative;
}

.signup-form-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.signup-form-label i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 16px;
}

.signup-form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.signup-form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.signup-form-input.error {
    border-color: var(--danger);
}

/* Custom Select Dropdown */
.signup-select-wrapper {
    position: relative;
}

.signup-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    font-size: 14px;
}

.signup-form-select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    color: var(--dark); /* Default text color */
}

/* Style the placeholder option (disabled selected) */
.signup-form-select option[disabled] {
    color: #999;
    opacity: 0.8;
}

/* Style the select when placeholder is selected */
.signup-form-select:invalid {
    color: #999;
    opacity: 0.8;
}

/* Style the select when a valid option is selected */
.signup-form-select:valid {
    color: var(--dark);
    opacity: 1;
}

.signup-form-select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Ensure focus state maintains proper text color */
.signup-form-select:focus:invalid {
    color: #999;
    opacity: 1;
}

.signup-form-select:focus:valid {
    color: var(--dark);
    opacity: 1;
}

.signup-form-select.error {
    border-color: var(--danger);
}

.signup-error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.signup-error-message.show {
    display: block;
}

/* Password Toggle */
.signup-password-wrapper {
    position: relative;
}

.signup-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s ease;
}

.signup-password-toggle:hover {
    color: var(--primary);
}

/* Submit Button */
.signup-submit-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.signup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
}

.signup-submit-btn:hover::before {
    left: 100%;
}

.signup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.signup-submit-btn:active {
    transform: translateY(0);
}

.signup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Login Link */
.signup-login-link {
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    color: var(--gray);
}

.signup-login-link a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.signup-login-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Terms and Conditions */
.signup-terms {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 24px;
    line-height: 1.5;
}

.signup-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.signup-terms a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}



/* Mobile Responsive */
@media (max-width: 480px) {
    .signup-container {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .signup-hero-section {
        padding: 25px 16px;
        margin-bottom: 0px;
    }
    
    .signup-hero-title {
        font-size: 20px;
    }
    
    .signup-content {
        padding: 0 20px 25px;
    }
    
    .signup-form {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .signup-form-title {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .signup-form-group {
        margin-bottom: 20px;
    }
    
    .signup-form-input, .signup-form-select {
        padding: 14px;
        font-size: 15px;
    }
    
    .signup-submit-btn {
        padding: 16px;
        font-size: 15px;
    }
    

}

@media (max-width: 360px) {
    .signup-container {
        padding: 10px 0;
    }
    
    .signup-hero-section {
        padding: 20px 14px;
    }
    
    .signup-hero-title {
        font-size: 18px;
    }
    
    /*.signup-content {*/
    /*    padding: 0 14px 25px;*/
    /*}*/
    
    .signup-form {
        padding: 20px 16px;
        border-radius: 18px;
    }
    
    .signup-form-title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .signup-form-label {
        font-size: 13px;
    }
    
    .signup-form-input, .signup-form-select {
        padding: 12px;
        font-size: 14px;
    }
    
    .signup-form-group {
        margin-bottom: 18px;
    }
    

}



/* ///////////////////////////////////////////////// */
/* ////////////////// PAYMENT PAGE ///////////////////*/
/* ///////////////////////////////////////////////// */


.payment-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    overflow: hidden ; 
}

/* Hero Section */
.payment-hero-section {
    text-align: center;
    margin-bottom: 16px;
}

.payment-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: paymentPulse 4s ease-in-out infinite;
}

.payment-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.payment-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Main Content */
.payment-content {
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
}

/* Payment Methods - Text Only */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.payment-method {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 2px;
}

.payment-method.active {
    color: var(--primary);
    font-weight: 700;
}

.payment-method.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* Payment Form */
.payment-form {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.payment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.payment-details {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.payment-detail {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.payment-detail:last-child {
    margin-bottom: 0;
}

.payment-detail-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 12px;
    font-size: 14px;
}

.payment-detail-content {
    flex: 1;
}

.payment-detail-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 2px;
}

.payment-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.payment-form-group {
    margin-bottom: 20px;
}

.payment-form-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.payment-form-label i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 16px;
}

.payment-form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.payment-form-input.error {
    border-color: var(--danger);
}

.payment-error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.payment-error-message.show {
    display: block;
}

/* Submit Button */
.payment-submit-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.payment-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
}

.payment-submit-btn:hover::before {
    left: 100%;
}

.payment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.payment-submit-btn:active {
    transform: translateY(0);
}

.payment-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}



/* Mobile Responsive */
@media (max-width: 480px) {
    .payment-container {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .payment-hero-section {
        padding:20px 15px 5px 15px;
        margin-bottom: 0px;
    }
    
    .payment-hero-title {
        font-size: 20px;
    }
    
    .payment-content {
        padding: 0 20px 25px;
    }
    
    .payment-form {
        padding: 20px;
        border-radius: 20px;
    }
    
    .payment-details {
        padding: 16px;
    }
    
    .payment-form-input {
        padding: 14px;
        font-size: 15px;
    }
    
    .payment-submit-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    /* Minimal Logo Mobile */
    .logo-animation-logo-container {
        margin: 15px 0 10px;
        height: 100px;
    }
    
    .logo-animation-person-cash-background {
        height: 60px;
    }
    
    .logo-animation-person-icon {
        font-size: 32px;
    }
    
    .logo-animation-cash-item {
        font-size: 20px;
    }
    
    .logo-animation-logo-text {
        font-size: 28px;
        margin-top: 2px;

    }
    
    .logo-animation-logo-subtitle {
        font-size: 14px;
    }
    
    .payment-methods {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    .payment-container {
        padding: 10px 0;
    }
    
    .payment-hero-section {
        margin-bottom: 10px;
    }
    
    .payment-hero-title {
        font-size: 18px;
    }
    
    /*.payment-content {*/
    /*    padding: 0 14px 25px;*/
    /*}*/
    
    .payment-form {
        padding: 16px;
        border-radius: 18px;
    }
    
    .payment-form-label {
        font-size: 13px;
    }
    
    .payment-form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Minimal Logo Small Mobile */
    .logo-animation-logo-container {
        margin: 10px 0 5px;
        height: 90px;
    }
    
    .logo-animation-person-cash-background {
        height: 50px;
    }
    
    .logo-animation-person-icon {
        font-size: 28px;
    }
    
    .logo-animation-cash-item {
        font-size: 18px;
    }
    
    .logo-animation-logo-text {
        font-size: 24px;
    }
    
    .logo-animation-logo-subtitle {
        font-size: 13px;
    }
    
    .payment-methods {
        gap: 16px;
    }
}


/* Account Note Styles */
.account-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    font-size: 14px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}

.note-header i {
    color: var(--primary);
}

.note-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.note-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.note-label {
    font-weight: 500;
    color: var(--gray);
}

.note-value {
    font-weight: 600;
    color: var(--dark);
}

.default-badge {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.user-badge {
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.note-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
}

.note-footer i {
    color: var(--warning);
}

/* ////////////PAYMENT SUCCESS PAGE/////////////// */
/* //////////////////////////////////////////////// */
/* //////////////////////////////////////////////// */
/* //////////////////////////////////////////////// */

 /* Base Styles - Mobile First */
    .payment-success-container {
        min-height: 100vh;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 20px 16px 40px;
        position: relative;
        overflow: hidden;
    }

    /* Green Tick Centered Animation */
    .success-tick-animation-container {
        position: absolute;
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        pointer-events: none;
        z-index: 1;
    }

    .success-tick-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid transparent;
        border-radius: 50%;
        opacity: 0;
    }

    .success-tick-ring-1 {
        width: 80px;
        height: 80px;
        border-color: #10b981;
    }

    .success-tick-ring-2 {
        width: 100px;
        height: 100px;
        border-color: #34d399;
    }

    .success-tick-ring-3 {
        width: 120px;
        height: 120px;
        border-color: #6ee7b7;
    }

    .success-tick-ring.success-active {
        animation: success-tickRingPulse 2s ease-out infinite;
    }

    @keyframes success-tickRingPulse {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.8;
        }
        50% {
            opacity: 0.4;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0;
        }
    }

    /* Celebration Container */
    .success-celebration-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
    }

    /* Confetti Styles */
    .success-confetti {
        position: absolute;
        width: 10px;
        height: 10px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .success-confetti.success-active {
        animation: success-confettiBurst 3s ease-in-out infinite;
    }

    @keyframes success-confettiBurst {
        0% {
            transform: translate(-50%, -50%) scale(0) rotate(0deg);
            opacity: 0;
        }
        15% {
            opacity: 1;
        }
        50% {
            transform: 
                translate(
                    calc(-50% + var(--tx, 0px)), 
                    calc(-50% + var(--ty, 0px))
                ) 
                scale(1) rotate(var(--rotate, 0deg));
            opacity: 1;
        }
        70% {
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(0) rotate(0deg);
            opacity: 0;
        }
    }

    /* Confetti variations */
    .success-confetti:nth-child(1) { 
        --tx: 60px; --ty: -40px; --rotate: 45deg;
        background: #ef4444;
        width: 8px; height: 8px;
        border-radius: 0;
        animation-delay: 0s;
    }
    .success-confetti:nth-child(2) { 
        --tx: -50px; --ty: -60px; --rotate: -30deg;
        background: #f59e0b;
        width: 6px; height: 12px;
        border-radius: 2px;
        animation-delay: 0.1s;
    }
    .success-confetti:nth-child(3) { 
        --tx: 70px; --ty: 30px; --rotate: 60deg;
        background: #10b981;
        width: 10px; height: 6px;
        border-radius: 1px;
        animation-delay: 0.2s;
    }
    .success-confetti:nth-child(4) { 
        --tx: -60px; --ty: 50px; --rotate: -45deg;
        background: #3b82f6;
        width: 8px; height: 8px;
        border-radius: 50%;
        animation-delay: 0.3s;
    }
    .success-confetti:nth-child(5) { 
        --tx: 40px; --ty: -70px; --rotate: 30deg;
        background: #8b5cf6;
        width: 12px; height: 4px;
        border-radius: 2px;
        animation-delay: 0.4s;
    }
    .success-confetti:nth-child(6) { 
        --tx: -70px; --ty: -30px; --rotate: -60deg;
        background: #ec4899;
        width: 6px; height: 10px;
        border-radius: 3px;
        animation-delay: 0.5s;
    }
    .success-confetti:nth-child(7) { 
        --tx: 50px; --ty: 60px; --rotate: 15deg;
        background: #06b6d4;
        width: 10px; height: 10px;
        border-radius: 0;
        animation-delay: 0.6s;
    }
    .success-confetti:nth-child(8) { 
        --tx: -40px; --ty: 70px; --rotate: -15deg;
        background: #f97316;
        width: 8px; height: 12px;
        border-radius: 2px;
        animation-delay: 0.7s;
    }
    .success-confetti:nth-child(9) { 
        --tx: 80px; --ty: 20px; --rotate: 75deg;
        background: #84cc16;
        width: 6px; height: 6px;
        border-radius: 50%;
        animation-delay: 0.8s;
    }
    .success-confetti:nth-child(10) { 
        --tx: -80px; --ty: 20px; --rotate: -75deg;
        background: #f43f5e;
        width: 12px; height: 8px;
        border-radius: 1px;
        animation-delay: 0.9s;
    }
    .success-confetti:nth-child(11) { 
        --tx: 30px; --ty: 80px; --rotate: 45deg;
        background: #0ea5e9;
        width: 8px; height: 8px;
        border-radius: 0;
        animation-delay: 1.0s;
    }
    .success-confetti:nth-child(12) { 
        --tx: -30px; --ty: -80px; --rotate: -45deg;
        background: #a855f7;
        width: 10px; height: 6px;
        border-radius: 2px;
        animation-delay: 1.1s;
    }
    .success-confetti:nth-child(13) { 
        --tx: 65px; --ty: -55px; --rotate: 20deg;
        background: #eab308;
        width: 7px; height: 9px;
        border-radius: 1px;
        animation-delay: 1.2s;
    }
    .success-confetti:nth-child(14) { 
        --tx: -65px; --ty: 55px; --rotate: -20deg;
        background: #22c55e;
        width: 9px; height: 7px;
        border-radius: 2px;
        animation-delay: 1.3s;
    }
    .success-confetti:nth-child(15) { 
        --tx: 0px; --ty: -90px; --rotate: 90deg;
        background: #6366f1;
        width: 11px; height: 5px;
        border-radius: 1px;
        animation-delay: 1.4s;
    }

    /* Star Styles */
    .success-star {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
        color: #fcd34d;
        opacity: 0;
        text-shadow: 0 0 10px rgba(252, 211, 77, 0.8);
    }

    .success-star.success-active {
        animation: success-starBurst 3.5s ease-in-out infinite;
    }

    @keyframes success-starBurst {
        0% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
        20% {
            opacity: 1;
        }
        60% {
            transform: 
                translate(
                    calc(-50% + var(--tx, 0px)), 
                    calc(-50% + var(--ty, 0px))
                ) 
                scale(1.8);
            opacity: 1;
        }
        80% {
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
    }

    /* Star positions */
    .success-star:nth-child(16) { 
        --tx: 45px; --ty: 0px;
        animation-delay: 0.5s;
    }
    .success-star:nth-child(17) { 
        --tx: 0px; --ty: -45px;
        animation-delay: 0.7s;
    }
    .success-star:nth-child(18) { 
        --tx: -45px; --ty: 0px;
        animation-delay: 0.9s;
    }
    .success-star:nth-child(19) { 
        --tx: 0px; --ty: 45px;
        animation-delay: 1.1s;
    }
    .success-star:nth-child(20) { 
        --tx: 32px; --ty: -32px;
        animation-delay: 1.3s;
    }
    .success-star:nth-child(21) { 
        --tx: -32px; --ty: 32px;
        animation-delay: 1.5s;
    }
    .success-star:nth-child(22) { 
        --tx: 32px; --ty: 32px;
        animation-delay: 1.7s;
    }
    .success-star:nth-child(23) { 
        --tx: -32px; --ty: -32px;
        animation-delay: 1.9s;
    }

    /* Sparkle Styles */
    .success-sparkle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        opacity: 0;
        box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.9);
    }

    .success-sparkle.success-active {
        animation: success-sparkleBurst 4s ease-in-out infinite;
    }

    @keyframes success-sparkleBurst {
        0% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
        20% {
            opacity: 1;
        }
        70% {
            transform: 
                translate(
                    calc(-50% + var(--tx, 0px)), 
                    calc(-50% + var(--ty, 0px))
                ) 
                scale(1.8);
            opacity: 1;
        }
        90% {
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
    }

    /* Sparkle positions */
    .success-sparkle:nth-child(24) { 
        --tx: 40px; --ty: -25px;
        animation-delay: 1.0s;
    }
    .success-sparkle:nth-child(25) { 
        --tx: -40px; --ty: -25px;
        animation-delay: 1.2s;
    }
    .success-sparkle:nth-child(26) { 
        --tx: 0px; --ty: -40px;
        animation-delay: 1.4s;
    }
    .success-sparkle:nth-child(27) { 
        --tx: 40px; --ty: 25px;
        animation-delay: 1.6s;
    }
    .success-sparkle:nth-child(28) { 
        --tx: -40px; --ty: 25px;
        animation-delay: 1.8s;
    }
    .success-sparkle:nth-child(29) { 
        --tx: 0px; --ty: 40px;
        animation-delay: 2.0s;
    }

    /* Success Header */
    .success-header {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px 0;
        position: relative;
        z-index: 2;
    }

    .success-icon {
        font-size: 64px;
        color: #10b981;
        margin-bottom: 16px;
        animation: success-tickAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        position: relative;
        z-index: 3;
        filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
    }

    .success-icon.pulse {
        animation: success-tickAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), success-gentlePulse 3s ease-in-out infinite;
    }

    @keyframes success-tickAppear {
        0% {
            transform: scale(0) rotate(-180deg);
            opacity: 0;
        }
        70% {
            transform: scale(1.1) rotate(10deg);
        }
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    @keyframes success-gentlePulse {
        0%, 100% {
            transform: scale(1);
            filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
        }
        50% {
            transform: scale(1.05);
            filter: drop-shadow(0 6px 20px rgba(16, 185, 129, 0.4));
        }
    }

    .success-header h1 {
        font-size: 24px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .success-header p {
        font-size: 16px;
        color: var(--gray);
        font-weight: 500;
    }

    /* Combined Details Card */
    .combined-details-card {
        background: var(--white);
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-bottom: 24px;
        position: relative;
        z-index: 2;
    }

    .card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f1f5f9;
    }

    .card-header i {
        width: 32px;
        height: 32px;
        background: var(--primary-light);
        color: var(--primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .card-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        margin: 0;
    }

    .details-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f8fafc;
    }

    .detail-item:last-child {
        border-bottom: none;
    }

    .label {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray);
    }

    .value {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        text-align: right;
    }

    .value.code {
        font-family: 'Courier New', monospace;
        background: #f8fafc;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 12px;
    }

    .value.amount {
        color: var(--success);
        font-weight: 700;
    }

    .value.capitalize {
        text-transform: capitalize;
    }

    /* Status Section */
    .status-section {
        background: var(--white);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        position: relative;
        z-index: 2;
    }

    .status-section h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 16px;
        text-align: center;
    }

    .status-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.5s ease;
    }

    .status-item:last-child {
        margin-bottom: 0;
    }

    .status-item.active {
        opacity: 1;
        transform: translateY(0);
    }

    .status-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .status-item.active .status-icon {
        background: var(--success);
        color: white;
    }

    .status-item:not(.active) .status-icon {
        background: #f1f5f9;
        color: var(--gray);
    }

    .status-content h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .status-content p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.4;
        margin: 0;
    }

    /* Important Note */
    .important-note {
        background: #f0f9ff;
        border: 1px solid #bae6fd;
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .important-note i {
        color: var(--primary);
        font-size: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .note-content h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .note-content p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.4;
        margin: 0;
    }

    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 12px;
        position: relative;
        z-index: 2;
    }

    .btn {
        flex: 1;
        padding: 16px 20px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        min-width: 120px;
    }

    .btn i {
        font-size: 16px;
    }

    .btn span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 4px 6px rgba(67, 97, 238, 0.25);
    }

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(67, 97, 238, 0.3);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--dark);
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .btn-secondary:hover {
        background: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    }

    /* Mobile Devices */
    @media (max-width: 767px) {
        .payment-success-container {
            padding: 15px 12px 30px;
        }
        
        .success-tick-animation-container {
            top: 23px;
            width: 100px;
            height: 100px;
        }
        
        .success-tick-ring-1 {
            width: 70px;
            height: 70px;
        }
        
        .success-tick-ring-2 {
            width: 85px;
            height: 85px;
        }
        
        .success-tick-ring-3 {
            width: 100px;
            height: 100px;
        }
        
        .success-celebration-container {
            width: 80px;
            height: 80px;
        }
        
        .success-icon {
            font-size: 56px;
            margin-bottom: 12px;
        }
        
        .success-header h1 {
            font-size: 22px;
            margin-bottom: 6px;
        }
        
        .success-header p {
            font-size: 14px;
        }
        
        .success-header {
            margin-bottom: 25px;
            padding: 15px 0;
        }
        
        .combined-details-card {
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .card-header {
            margin-bottom: 15px;
            padding-bottom: 10px;
        }
        
        .card-header h3 {
            font-size: 16px;
        }
        
        .detail-item {
            padding: 10px 0;
        }
        
        .label {
            font-size: 13px;
        }
        
        .value {
            font-size: 13px;
        }
        
        .value.code {
            font-size: 11px;
            padding: 3px 6px;
        }
        
        .status-section {
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .status-section h3 {
            font-size: 16px;
            margin-bottom: 12px;
        }
        
        .status-item {
            margin-bottom: 15px;
        }
        
        .status-icon {
            width: 32px;
            height: 32px;
            font-size: 12px;
        }
        
        .status-content h4 {
            font-size: 14px;
            margin-bottom: 3px;
        }
        
        .status-content p {
            font-size: 12px;
        }
        
        .important-note {
            padding: 12px;
            margin-bottom: 25px;
        }
        
        .important-note i {
            font-size: 18px;
        }
        
        .note-content h4 {
            font-size: 14px;
            margin-bottom: 4px;
        }
        
        .note-content p {
            font-size: 12px;
        }
        
        /* Enhanced mobile button styles */
        .action-buttons {
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 16px;
            font-size: 14px;
            min-width: 110px;
            flex: 1 1 calc(50% - 5px);
        }
        
        .btn i {
            font-size: 14px;
        }
    }

    /* Tablet and Desktop Styles */
    @media (min-width: 768px) {
        .payment-success-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .success-tick-animation-container {
            width: 140px;
            height: 140px;
            top: 73px; 
        }

        .success-tick-ring-1 {
            width: 100px;
            height: 100px;
        }

        .success-tick-ring-2 {
            width: 120px;
            height: 120px;
        }

        .success-tick-ring-3 {
            width: 140px;
            height: 140px;
        }

        .success-header {
            margin-bottom: 40px;
        }

        .success-icon {
            font-size: 80px;
        }

        .success-header h1 {
            font-size: 28px;
        }

        .details-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .detail-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            border-bottom: none;
            padding: 0;
        }

        .detail-item:nth-child(odd) {
            border-right: 1px solid #f1f5f9;
            padding-right: 16px;
        }

        .label {
            font-size: 13px;
        }

        .value {
            text-align: left;
            font-size: 15px;
        }

        /* Enhanced tablet/desktop button styles */
        .action-buttons {
            gap: 16px;
        }

        .btn {
            padding: 18px 24px;
            font-size: 16px;
            min-width: 140px;
        }
        
        .btn i {
            font-size: 18px;
        }
    }

    @media (min-width: 1024px) {
        .payment-success-container {
            max-width: 520px;
            padding: 60px 20px;
        }
    }











/* /////////////////others ///////////////// */
/* ///////////////////////////////////////// */
/* ///////////////////////////////////////// */
/* ///////////////////////////////////////// */
/* ///////////////////////////////////////// */
/* ///////////////////////////////////////// */
/* ///////////////////////////////////////// */



/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.alert-success {
    background: var(--success);
    color: white;
    border: 1px solid #0fa968;
}

.alert-error {
    background: var(--danger);
    color: white;
    border: 1px solid #dc2626;
}



/* Referral Field Styles */
.signup-referral-wrapper {
    position: relative;
}

.referral-lock-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    font-size: 16px;
}

.referral-message {
    font-size: 12px;
    color: var(--success);
    margin-top: 4px;
    font-weight: 500;
}

/* Make the referral input look locked */
.signup-form-input[readonly] {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    color: var(--gray);
}











/* //////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////// */
/* ////////////////////////FLASH MSGS//////////////////////////// */
/* //////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////// */

/* ===== MODERN FLASH MESSAGES SYSTEM ===== */

.flash-messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 420px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flash-message {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0;
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-message.exiting {
    animation: slideOutRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutRight {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Message Content */
.flash-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 60px 20px 20px;
    position: relative;
}

/* Icons */
.flash-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
}

.flash-text {
    flex: 1;
    min-width: 0;
}

.flash-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.flash-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.flash-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.flash-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: #64748b;
}

.flash-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Close Button */
.flash-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.flash-close:hover {
    background: white;
    border-color: #cbd5e1;
    color: #374151;
    transform: scale(1.05);
}

/* Progress Bar */
.flash-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, currentColor, transparent);
    opacity: 0.3;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    animation: progressBar linear forwards;
}

@keyframes progressBar {
    to {
        transform: scaleX(0);
    }
}

/* Success Theme */
.flash-success {
    border-left: 4px solid #10b981;
}

.flash-success .flash-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.flash-success .flash-progress {
    color: #10b981;
}

/* Error Theme */
.flash-error {
    border-left: 4px solid #ef4444;
}

.flash-error .flash-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.flash-error .flash-progress {
    color: #ef4444;
}

/* Warning Theme */
.flash-warning {
    border-left: 4px solid #f59e0b;
}

.flash-warning .flash-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.flash-warning .flash-progress {
    color: #f59e0b;
}

/* Info Theme */
.flash-info {
    border-left: 4px solid #3b82f6;
}

.flash-info .flash-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.flash-info .flash-progress {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flash-messages-container {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        width: auto;
    }
    
    .flash-message {
        border-radius: 14px;
    }
    
    .flash-content {
        padding: 18px 56px 18px 18px;
        gap: 14px;
    }
    
    .flash-title {
        font-size: 0.9rem;
    }
    
    .flash-description {
        font-size: 0.85rem;
    }
    
    .flash-close {
        top: 14px;
        right: 14px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .flash-messages-container {
        top: 12px;
        right: 12px;
        left: 12px;
    }
    
    .flash-content {
        padding: 16px 52px 16px 16px;
        gap: 12px;
    }
    
    .flash-icon {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .flash-message {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(71, 85, 105, 0.3);
    }
    
    .flash-title {
        color: #f1f5f9;
    }
    
    .flash-description {
        color: #cbd5e1;
    }
    
    .flash-list li {
        color: #cbd5e1;
    }
    
    .flash-close {
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(71, 85, 105, 0.5);
        color: #94a3b8;
    }
    
    .flash-close:hover {
        background: #374151;
        color: #f1f5f9;
    }
}

/* Stacking animation for multiple messages */
.flash-message:nth-child(1) { animation-delay: 0s; }
.flash-message:nth-child(2) { animation-delay: 0.1s; }
.flash-message:nth-child(3) { animation-delay: 0.2s; }
.flash-message:nth-child(4) { animation-delay: 0.3s; }