﻿:root {
    --primary: #6C63FF;
    --secondary: #8B5CF6;
    --bg-main: #0F172A;
    --bg-secondary: #111827;
    --card-bg: rgba(255,255,255,.06);
    --text-main: #FFFFFF;
    --text-muted: rgba(252,224,22,.68);
    --border-color: rgba(255,255,255,.08);
    --shadow-color: rgba(0,0,0,.35);
}

[data-theme="light"] {
    --bg-main: #F3F4F6;
    --bg-secondary: #FFFFFF;
    --card-bg: rgba(255,255,255,.75);
    --text-main: #111827;
    --text-muted: rgba(17,24,39,.7);
    --border-color: rgba(0,0,0,.08);
    --shadow-color: rgba(0,0,0,.08);
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    background: linear-gradient( 135deg, var(--bg-main), var(--bg-secondary) );
    min-height: 100vh;
    color: var(--text-main);
    overflow-x: hidden;
    transition: .3s ease;
    position: relative;
}

/* Background */

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}

.bg-shape-1 {
    width: 350px;
    height: 350px;
    background: #6C63FF;
    top: -100px;
    left: -100px;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: #A855F7;
    bottom: -150px;
    right: -150px;
}

/* Theme Button */

.theme-switch-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    color: white;
    z-index: 1000;
    transition: .3s;
}

    .theme-switch-btn:hover {
        transform: rotate(15deg) scale(1.05);
    }

/* Wrapper */

.auth-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Left Side */

.auth-left-side {
    width: 50%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.logo-icon {
    width: 65px;
    height: 65px;
    border-radius: 22px;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 15px 35px rgba(108,99,255,.35);
}

.logo-text {
    font-size: 38px;
    font-weight: 700;
}

    .logo-text span {
        color: #A855F7;
    }

/* Hero */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(108,99,255,.15);
    color: #C4B5FD;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .hero-section h1 span {
        background: linear-gradient( 135deg, #60A5FA, #A855F7 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-section p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 650px;
}

/* Features */

.features-list {
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(108,99,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
    font-size: 18px;
}

/* Right Side */

.auth-right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Auth Card */

.auth-card {
    width: 100%;
    max-width: 520px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(24px);
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 20px 50px var(--shadow-color);
}

.auth-header {
    margin-bottom: 35px;
}

    .auth-header h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .auth-header p {
        color: var(--text-muted);
        margin: 0;
    }

/* Footer */

.auth-footer {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */

@media(max-width:992px) {

    .auth-left-side {
        display: none;
    }

    .auth-right-side {
        width: 100%;
        padding: 20px;
    }

    .auth-card {
        max-width: 100%;
    }
}


.password-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0F172A;
    font-size: 18px;
    transition: .3s;
    z-index: 100;
    padding: 4px;
}

    .password-eye:hover {
        color: #A855F7;
    }

[data-theme="light"] .password-eye {
    color: #6B7280;
}

    [data-theme="light"] .password-eye:hover {
        color: #8B5CF6;
    }

.success-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 55px 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .success-card::before {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(16,185,129,.15);
        top: -120px;
        right: -120px;
        filter: blur(35px);
    }

.success-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 32px auto;
    border-radius: 32px;
    background: linear-gradient(135deg,#10B981,#34D399);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    color: #fff;
    box-shadow: 0 25px 55px rgba(16,185,129,.35);
    animation: successPulse 2s infinite;
}

.success-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.success-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 560px;
    margin: auto auto 35px auto;
}

.success-actions {
    margin-top: 20px;
}

.btn-downly-success {
    background: linear-gradient(135deg,#7d5ffa,#34D399);
    border: none;
    border-radius: 18px;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(16,185,129,.35);
}

    .btn-downly-success:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-downly-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 15px 30px;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .btn-downly-outline:hover {
        background: rgba(255,255,255,.08);
        color: var(--text-main);
    }

.success-footer {
    margin-top: 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .success-card {
        padding: 35px 20px;
    }

    .success-title {
        font-size: 30px;
    }

    .success-text {
        font-size: 16px;
    }

    .success-icon {
        width: 95px;
        height: 95px;
        font-size: 45px;
    }
}

.failed-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 55px 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .failed-card::before {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(239,68,68,.15);
        top: -120px;
        right: -120px;
        filter: blur(35px);
    }

.failed-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 32px auto;
    border-radius: 32px;
    background: linear-gradient(135deg,#EF4444,#F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    color: #fff;
    box-shadow: 0 25px 55px rgba(239,68,68,.35);
    animation: failedPulse 2s infinite;
}

.failed-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.failed-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 580px;
    margin: auto auto 35px auto;
}

.failed-actions {
    margin-top: 20px;
}

.btn-downly-danger {
    background: linear-gradient(135deg,#EF4444,#F97316);
    border: none;
    border-radius: 18px;
    padding: 15px 30px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(239,68,68,.35);
}

    .btn-downly-danger:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-downly-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 15px 30px;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .btn-downly-outline:hover {
        background: rgba(255,255,255,.08);
        color: var(--text-main);
    }

.failed-footer {
    margin-top: 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

@keyframes failedPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .failed-card {
        padding: 35px 20px;
    }

    .failed-title {
        font-size: 30px;
    }

    .failed-text {
        font-size: 16px;
    }

    .failed-icon {
        width: 95px;
        height: 95px;
        font-size: 45px;
    }
}

.support-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 850px;
    margin: auto;
}

.support-header {
    text-align: center;
    margin-bottom: 35px;
}

.support-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#06B6D4,#3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    margin: auto auto 25px auto;
    box-shadow: 0 20px 50px rgba(59,130,246,.35);
}

.support-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
}

.support-header p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 650px;
    margin: auto;
}

.downly-textarea {
    border-radius: 22px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,.04);
    color: var(--text-main);
    padding: 20px;
}

.btn-downly-support {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#06B6D4,#3B82F6);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
    box-shadow: 0 20px 45px rgba(59,130,246,.35);
}

    .btn-downly-support:hover {
        transform: translateY(-3px);
    }

.support-success-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 55px 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 720px;
    margin: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .support-success-card::before {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(59,130,246,.15);
        top: -120px;
        right: -120px;
        filter: blur(35px);
    }

.support-success-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 32px auto;
    border-radius: 32px;
    background: linear-gradient(135deg,#06B6D4,#3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #fff;
    box-shadow: 0 25px 55px rgba(59,130,246,.35);
    animation: supportPulse 2s infinite;
}

.support-success-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.support-success-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 590px;
    margin: auto auto 35px auto;
}

.support-success-actions {
    margin-top: 20px;
}

.support-success-footer {
    margin-top: 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

@keyframes supportPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .support-success-card {
        padding: 35px 20px;
    }

    .support-success-title {
        font-size: 30px;
    }

    .support-success-text {
        font-size: 16px;
    }

    .support-success-icon {
        width: 95px;
        height: 95px;
        font-size: 45px;
    }
}



.login-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 17px;
    z-index: 10;
}

.login-input-padding {
    padding-left: 50px !important;
}

.password-padding-end {
    padding-right: 55px !important;
}

.login-small-link {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

    .login-small-link:hover {
        color: #A855F7;
    }

.login-btn-main {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 18px 40px rgba(108,99,255,.35);
    transition: .3s;
}

    .login-btn-main:hover {
        transform: translateY(-3px);
    }

.register-link {
    text-align: center;
    margin-top: 22px;
    color: var(--text-muted);
}

    .register-link a {
        color: #8B5CF6;
        text-decoration: none;
        font-weight: 700;
    }

.password-eye {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    transition: .3s;
    z-index: 100;
    padding: 4px;
}

    .password-eye:hover {
        color: #A855F7;
    }

[data-theme="light"] .password-eye {
    color: #6B7280;
}

    [data-theme="light"] .password-eye:hover {
        color: #8B5CF6;
    }

.login-success-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 55px 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 720px;
    margin: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .login-success-card::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(16,185,129,.16);
        top: -130px;
        right: -130px;
        filter: blur(45px);
    }

.login-success-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 30px auto;
    border-radius: 32px;
    background: linear-gradient(135deg,#10B981,#34D399);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    color: #fff;
    box-shadow: 0 25px 55px rgba(16,185,129,.35);
    animation: loginPulse 2s infinite;
}

.login-success-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 18px;
}

.login-success-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 580px;
    margin: auto auto 35px auto;
}

.login-success-actions {
    margin-top: 20px;
}

.btn-login-success {
    background: linear-gradient(135deg,#10B981,#34D399);
    border: none;
    border-radius: 18px;
    padding: 15px 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(16,185,129,.35);
}

    .btn-login-success:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-login-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 15px 30px;
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-login-outline:hover {
        background: rgba(255,255,255,.08);
        color: var(--text-main);
    }

.login-success-footer {
    margin-top: 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

@keyframes loginPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .login-success-card {
        padding: 35px 20px;
    }

    .login-success-title {
        font-size: 30px;
    }

    .login-success-text {
        font-size: 16px;
    }

    .login-success-icon {
        width: 95px;
        height: 95px;
        font-size: 45px;
    }
}

.error-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 55px 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 720px;
    margin: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .error-card::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(239,68,68,.16);
        top: -130px;
        right: -130px;
        filter: blur(45px);
    }

.error-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 30px auto;
    border-radius: 32px;
    background: linear-gradient(135deg,#EF4444,#F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    color: #fff;
    box-shadow: 0 25px 55px rgba(239,68,68,.35);
    animation: errorPulse 2s infinite;
}

.error-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 18px;
}

.error-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 580px;
    margin: auto auto 35px auto;
}

.error-actions {
    margin-top: 20px;
}

.btn-error-primary {
    background: linear-gradient(135deg,#EF4444,#F97316);
    border: none;
    border-radius: 18px;
    padding: 15px 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(239,68,68,.35);
}

    .btn-error-primary:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-error-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 15px 30px;
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-error-outline:hover {
        background: rgba(255,255,255,.08);
        color: var(--text-main);
    }

.error-footer {
    margin-top: 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

@keyframes errorPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .error-card {
        padding: 35px 20px;
    }

    .error-title {
        font-size: 30px;
    }

    .error-text {
        font-size: 16px;
    }

    .error-icon {
        width: 95px;
        height: 95px;
        font-size: 45px;
    }
}
.change-password-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 650px;
    margin: auto;
}

.change-password-header {
    text-align: center;
    margin-bottom: 35px;
}

.change-password-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    margin: auto auto 25px auto;
    box-shadow: 0 20px 50px rgba(108,99,255,.35);
}

.change-password-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
}

.change-password-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
    margin: auto;
}

.change-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 17px;
    z-index: 10;
}

.change-input-padding {
    padding-left: 50px !important;
}

.change-password-padding {
    padding-right: 55px !important;
}

.change-btn-main {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 18px 40px rgba(108,99,255,.35);
    transition: .3s;
}

    .change-btn-main:hover {
        transform: translateY(-3px);
    }


.forgot-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 650px;
    margin: auto;
}

.forgot-header {
    text-align: center;
    margin-bottom: 35px;
}

.forgot-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    margin: auto auto 25px auto;
    box-shadow: 0 20px 50px rgba(108,99,255,.35);
}

.forgot-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
}

.forgot-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
    margin: auto;
}

.forgot-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 17px;
    z-index: 10;
}

.forgot-input-padding {
    padding-left: 50px !important;
}

.forgot-btn-main {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 18px 40px rgba(108,99,255,.35);
    transition: .3s;
}

    .forgot-btn-main:hover {
        transform: translateY(-3px);
    }

.forgot-links {
    text-align: center;
    margin-top: 24px;
}

    .forgot-links a {
        color: #8B5CF6;
        text-decoration: none;
        font-weight: 700;
    }

        .forgot-links a:hover {
            color: #A855F7;
        }


.verify-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 650px;
    margin: auto;
}

.verify-header {
    text-align: center;
    margin-bottom: 35px;
}

.verify-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#06B6D4,#3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    margin: auto auto 25px auto;
    box-shadow: 0 20px 50px rgba(59,130,246,.35);
}

.verify-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
}

.verify-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
    margin: auto;
}

.verify-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 17px;
    z-index: 10;
}

.verify-input-padding {
    padding-left: 50px !important;
}

.verify-code-input {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 8px;
}

.verify-btn-main {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#06B6D4,#3B82F6);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 18px 40px rgba(59,130,246,.35);
    transition: .3s;
}

    .verify-btn-main:hover {
        transform: translateY(-3px);
    }

.verify-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 24px;
}

    .verify-links a {
        color: #8B5CF6;
        text-decoration: none;
        font-weight: 700;
    }

        .verify-links a:hover {
            color: #A855F7;
        }

@media(max-width:768px) {
    .verify-card {
        padding: 35px 22px;
    }

    .verify-header h2 {
        font-size: 30px;
    }

    .verify-code-input {
        font-size: 20px;
        letter-spacing: 5px;
    }
}
.password-success-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 55px var(--shadow-color);
    max-width: 720px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

    .password-success-card::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(16,185,129,.16);
        top: -140px;
        right: -140px;
        filter: blur(40px);
    }

.password-success-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.password-success-icon {
    width: 110px;
    height: 110px;
    border-radius: 32px;
    background: linear-gradient(135deg,#10B981,#34D399);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    margin: auto auto 25px auto;
    box-shadow: 0 22px 55px rgba(16,185,129,.35);
    animation: PasswordPulse 2s infinite;
}

.password-success-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 18px;
}

.password-success-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
    max-width: 560px;
    margin: auto;
}

.password-success-info {
    display: grid;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.password-success-item {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-main);
}

    .password-success-item i {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        background: rgba(16,185,129,.16);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #34D399;
        font-size: 18px;
    }

.password-success-actions {
    text-align: center;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.btn-password-success {
    background: linear-gradient(135deg,#10B981,#34D399);
    border: none;
    border-radius: 18px;
    padding: 15px 28px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(16,185,129,.35);
}

    .btn-password-success:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-password-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 15px 28px;
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-password-outline:hover {
        background: rgba(255,255,255,.08);
        color: var(--text-main);
    }

.password-success-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@keyframes PasswordPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .password-success-card {
        padding: 35px 22px;
    }

    .password-success-header h2 {
        font-size: 30px;
    }

    .password-success-header p {
        font-size: 16px;
    }

    .password-success-icon {
        width: 95px;
        height: 95px;
        font-size: 42px;
    }
}
.downly-center-page {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#071224,#0F172A);
}

.downly-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .28;
    pointer-events: none;
}

.downly-bg-1 {
    width: 420px;
    height: 420px;
    background: #6C63FF;
    top: -140px;
    left: -140px;
}

.downly-bg-2 {
    width: 460px;
    height: 460px;
    background: #06B6D4;
    bottom: -180px;
    right: -160px;
}

.myinfo-wrapper {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 5;
}

.myinfo-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 36px;
    padding: 42px;
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 70px rgba(0,0,0,.40);
}

.myinfo-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 38px;
}

.myinfo-avatar {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    box-shadow: 0 20px 55px rgba(108,99,255,.35);
}

.myinfo-header h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
}

.myinfo-header p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 16px;
}

.info-box {
    height: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 24px;
    transition: .25s;
}

    .info-box:hover {
        transform: translateY(-5px);
        border-color: rgba(108,99,255,.35);
    }

    .info-box label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-muted);
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

.info-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    word-break: break-word;
}

.btn-downly-primary {
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    border: none;
    border-radius: 18px;
    padding: 14px 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(108,99,255,.35);
    transition: .3s;
}

    .btn-downly-primary:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.btn-downly-outline {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 14px 28px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .btn-downly-outline:hover {
        background: rgba(255,255,255,.10);
        color: var(--text-main);
    }

@media(max-width:991px) {
    .downly-center-page {
        padding: 20px;
    }

    .myinfo-card {
        padding: 28px;
    }

    .myinfo-header {
        flex-direction: column;
        text-align: center;
    }

        .myinfo-header h2 {
            font-size: 30px;
        }
}


.downlyar-logout-page {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#071224,#0F172A);
}

.downlyar-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .28;
    pointer-events: none;
}

.downlyar-bg-1 {
    width: 420px;
    height: 420px;
    background: #6C63FF;
    top: -140px;
    left: -140px;
}

.downlyar-bg-2 {
    width: 460px;
    height: 460px;
    background: #06B6D4;
    bottom: -180px;
    right: -160px;
}

.logout-wrapper {
    width: 100%;
    max-width: 680px;
    position: relative;
    z-index: 5;
}

.logout-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 38px;
    padding: 55px 45px;
    text-align: center;
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 70px rgba(0,0,0,.40);
    position: relative;
    overflow: hidden;
}

    .logout-card::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(108,99,255,.16);
        top: -140px;
        right: -140px;
        filter: blur(40px);
    }

.logout-icon {
    width: 115px;
    height: 115px;
    border-radius: 34px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 52px;
    margin: auto auto 30px auto;
    box-shadow: 0 22px 55px rgba(108,99,255,.38);
    animation: logoutPulse 2s infinite;
    position: relative;
    z-index: 2;
}

.logout-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.logout-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 520px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.logout-loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

    .logout-loader span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #8B5CF6;
        animation: logoutDots 1.2s infinite ease-in-out;
    }

        .logout-loader span:nth-child(2) {
            animation-delay: .2s;
        }

        .logout-loader span:nth-child(3) {
            animation-delay: .4s;
        }

.logout-note {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@keyframes logoutPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes logoutDots {
    0%,80%,100% {
        transform: scale(.8);
        opacity: .45;
    }

    40% {
        transform: scale(1.25);
        opacity: 1;
    }
}

@media(max-width:768px) {
    .downlyar-logout-page {
        padding: 20px;
    }

    .logout-card {
        padding: 40px 24px;
    }

        .logout-card h2 {
            font-size: 32px;
        }

    .logout-icon {
        width: 95px;
        height: 95px;
        font-size: 42px;
    }
}

.downlyar-token-page {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#071224,#0F172A);
}

.downlyar-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .28;
    pointer-events: none;
}

.downlyar-bg-1 {
    width: 420px;
    height: 420px;
    background: #6C63FF;
    top: -140px;
    left: -140px;
}

.downlyar-bg-2 {
    width: 460px;
    height: 460px;
    background: #06B6D4;
    bottom: -180px;
    right: -160px;
}

.token-wrapper {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 5;
}

.token-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 38px;
    padding: 45px;
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 70px rgba(0,0,0,.40);
    position: relative;
    overflow: hidden;
}

    .token-card::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(108,99,255,.16);
        top: -150px;
        right: -140px;
        filter: blur(45px);
    }

.token-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.token-icon {
    width: 110px;
    height: 110px;
    border-radius: 32px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    margin: auto auto 25px auto;
    box-shadow: 0 22px 55px rgba(108,99,255,.38);
    animation: tokenPulse 2s infinite;
}

.token-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
}

.token-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    margin: auto;
}

.downly-input {
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: var(--text-main);
    padding: 15px;
    transition: .3s;
}

    .downly-input:focus {
        border-color: #8B5CF6;
        box-shadow: 0 0 0 4px rgba(139,92,246,.15);
        background: rgba(255,255,255,.07);
        color: var(--text-main);
    }

.downly-textarea {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: var(--text-main);
    padding: 18px;
    transition: .3s;
}

    .downly-textarea:focus {
        border-color: #8B5CF6;
        box-shadow: 0 0 0 4px rgba(139,92,246,.15);
        background: rgba(255,255,255,.07);
        color: var(--text-main);
    }

.token-policy-box {
    background: rgba(6,182,212,.10);
    border: 1px solid rgba(6,182,212,.25);
    border-radius: 20px;
    padding: 18px 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

    .token-policy-box i {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(6,182,212,.18);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #67E8F9;
        font-size: 18px;
    }

.token-btn-main {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 18px 40px rgba(108,99,255,.35);
    transition: .3s;
}

    .token-btn-main:hover {
        transform: translateY(-3px);
    }

@keyframes tokenPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .downlyar-token-page {
        padding: 20px;
    }

    .token-card {
        padding: 35px 22px;
    }

    .token-header h2 {
        font-size: 30px;
    }

    .token-icon {
        width: 95px;
        height: 95px;
        font-size: 42px;
    }
}