@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    background: #f5f7fa;
    position: relative;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.loading-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loading-pattern-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.loading-pattern-symbol {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.04);
    font-weight: 300;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: -3s; }
.particle:nth-child(3) { left: 60%; animation-delay: -6s; }
.particle:nth-child(4) { left: 80%; animation-delay: -9s; }
.particle:nth-child(5) { left: 10%; animation-delay: -12s; }
.particle:nth-child(6) { left: 50%; animation-delay: -15s; }
.particle:nth-child(7) { left: 70%; animation-delay: -18s; }
.particle:nth-child(8) { left: 30%; animation-delay: -2s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: contentFadeIn 1s ease;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-logo {
    width: 350px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 15px 50px rgba(255, 255, 255, 0.8));
    margin-bottom: 30px;
    animation: logoBreath 3s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes logoBreath {
    0%, 100% {
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 15px 50px rgba(255, 255, 255, 0.8));
    }
    50% {
        transform: scale(1.05);
        filter: brightness(0) invert(1) drop-shadow(0 20px 60px rgba(255, 255, 255, 1));
    }
}

.loading-text {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.loading-spinner-container {
    position: relative;
}

.modern-spinner {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    animation: spinRotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border-top-color: rgba(255, 255, 255, 0.7);
    border-right-color: rgba(255, 255, 255, 0.7);
    animation-delay: -0.5s;
    animation-duration: 1.8s;
}

.spinner-ring:nth-child(3) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(255, 255, 255, 0.4);
    border-right-color: rgba(255, 255, 255, 0.4);
    animation-delay: -1s;
    animation-duration: 2.1s;
}

@keyframes spinRotate {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}


@media (max-width: 768px) {
    .loading-logo {
        width: 270px;
    }

    .loading-text {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .modern-spinner {
        width: 90px;
        height: 90px;
    }

    .loading-pattern-dot {
        width: 6px;
        height: 6px;
    }

    .loading-pattern-symbol {
        font-size: 30px;
    }
}

.login-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-section {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.pattern-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
}

.pattern-symbol {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.04);
    font-weight: 300;
    pointer-events: none;
    user-select: none;
}

.quote-content {
    position: relative;
    z-index: 10;
    max-width: 580px;
    width: 100%;
}

.hero-logo-section {
    text-align: center;
    margin-bottom: 30px;
    user-select: none;
}

.hero-logo {
    width: 340px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 12px 48px rgba(255, 255, 255, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 12px 48px rgba(255, 255, 255, 0.6));
    }
    50% {
        transform: translateY(-15px) scale(1.03);
        filter: brightness(0) invert(1) drop-shadow(0 20px 60px rgba(255, 255, 255, 0.8));
    }
}

.hero-welcome {
    text-align: center;
    margin-bottom: 38px;
}

.hero-heading {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.hero-emoji {
    font-size: 48px;
    display: inline-block;
    animation: wave 2.5s ease-in-out infinite;
    user-select: none;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
}

.hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.2px;
}

.trust-badges-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    user-select: none;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    border-radius: 14px;
    border-left: 4px solid transparent;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:nth-child(1) {
    border-left-color: #667eea;
}

.feature-card:nth-child(2) {
    border-left-color: #3b9dff;
}

.feature-card:nth-child(3) {
    border-left-color: #10b981;
}

.feature-card:nth-child(4) {
    border-left-color: #ec4899;
}

.feature-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-left-width: 6px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    position: relative;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.feature-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    margin-top: 10px;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-line {
    transform: scaleX(1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
}

.badge-desc {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.platform-icons-section {
    margin-top: 24px;
    user-select: none;
}

.section-divider {
    text-align: center;
    margin-bottom: 18px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.platform-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-icon:hover::before {
    opacity: 1;
}

.platform-icon:hover {
    transform: translateY(-8px) scale(1.15);
}

.platform-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.platform-icon:hover svg {
    transform: rotate(-10deg);
}

.instagram-platform {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
}

.instagram-platform:hover {
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.6);
}

.instagram-platform svg {
    color: #ffffff;
}

.tiktok-platform {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.tiktok-platform:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.tiktok-platform svg {
    color: #ffffff;
}

.youtube-platform {
    background: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.youtube-platform:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.youtube-platform svg {
    color: #ffffff;
}

.twitter-platform {
    background: #1DA1F2;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.twitter-platform:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.6);
}

.twitter-platform svg {
    color: #ffffff;
}

.facebook-platform {
    background: #1877F2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.facebook-platform:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.facebook-platform svg {
    color: #ffffff;
}

.guarantee-badge-large {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.guarantee-text {
    z-index: 2;
}

.guarantee-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.guarantee-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.speed-meter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 18px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.speed-icon-wrapper {
    font-size: 36px;
    margin-bottom: 8px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.speed-text {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.speed-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.speed-progress {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% { width: 60%; }
    50% { width: 95%; }
}

.speed-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.mini-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-stat-card {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.stat-pulse {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-gradient {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.3), rgba(253, 187, 45, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mini-stat-num {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.mini-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.security-badge-card {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.security-shield {
    width: 42px;
    height: 42px;
    background: #22c55e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-shield svg {
    width: 24px;
    height: 24px;
    color: #fff;
    pointer-events: none;
    user-select: none;
}

.security-title {
    font-size: 15px;
    font-weight: 800;
    color: #22c55e;
}

.security-desc {
    font-size: 11px;
    font-weight: 600;
    color: rgba(34, 197, 94, 0.8);
}

.support-card-outline {
    background: transparent;
    border: 3px solid #ef4444;
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.support-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.support-icon {
    font-size: 28px;
}

.support-text {
    font-size: 16px;
    font-weight: 800;
    color: #ef4444;
}

.trust-badge-minimal {
    background: rgba(6, 182, 212, 0.1);
    border-left: 4px solid #06b6d4;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #06b6d4;
}

.trust-checkmark {
    width: 28px;
    height: 28px;
    background: #06b6d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.features-list-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-premium-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.feature-premium-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

.feature-premium-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-premium-icon svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    pointer-events: none;
    user-select: none;
}

.feature-premium-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.right-section {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-box {
    width: 100%;
    max-width: 560px;
}

.login-header {
    margin-bottom: 48px;
}

.login-title {
    font-size: 44px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #1a1d1f;
    margin-bottom: 14px;
    letter-spacing: -1px;
    background: #000000e0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #6f767e;
    font-weight: 500;
    font-weight: 500;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #1a1d1f;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    color: #1a1d1f;
    font-weight: 500;
}

.form-input:focus {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.08), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #9ca3af;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #667eea;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
}

.custom-checkbox input {
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.checkbox-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox input:checked ~ .checkbox-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-box svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.custom-checkbox input:checked ~ .checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 14px;
    color: #6f767e;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.forgot-password {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-password::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.forgot-password:hover::after {
    width: 100%;
}

.forgot-password:hover {
    color: #764ba2;
}

.submit-button {
    width: 100%;
    padding: 18px 28px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #7688f0 0%, #8555b0 100%);
}

.submit-button:hover svg {
    transform: translateX(4px);
}

.submit-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    margin: 36px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
}

.divider-text {
    padding: 0 20px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
}

.register-section {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
    border-radius: 14px;
    border: 2px dashed rgba(102, 126, 234, 0.2);
}

.register-text {
    font-size: 15px;
    color: #6f767e;
    font-weight: 500;
}

.register-link {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.register-link:hover {
    color: #764ba2;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.security-badge svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.security-text {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #10b981;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.credits-icon {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
}

.credits-link {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.credits-link:hover {
    color: #764ba2;
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
    }

    .right-section {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .right-section {
        padding: 40px 24px;
    }

    .footer-credits {
        flex-direction: column;
        padding: 12px 16px;
        gap: 6px;
    }

    .credits-link {
        font-size: 12px;
        text-align: center;
    }

    .login-title {
        font-size: 32px;
    }

    .left-section {
        padding: 50px 30px;
    }

    .hero-logo {
        width: 160px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-emoji {
        font-size: 38px;
    }

    .hero-heading {
        font-size: 26px;
    }

    .trust-badges-section {
        gap: 10px;
    }

    .feature-card {
        padding: 16px 18px;
        gap: 14px;
        border-radius: 12px;
    }

    .feature-number {
        font-size: 26px;
    }

    .feature-title {
        font-size: 13.5px;
    }
    
    .feature-line {
        margin-top: 8px;
    }
    
    .feature-card:hover {
        transform: translateX(6px);
    }

    .platform-icon {
        width: 52px;
        height: 52px;
    }

    .platform-icon svg {
        width: 26px;
        height: 26px;
    }

    .hero-text {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .feature-premium-item {
        padding: 12px 14px;
    }

    .feature-premium-text {
        font-size: 13px;
    }
}

.login-spinner {
    display: inline-block;
    vertical-align: middle;
    animation: spin 1s linear infinite !important;
    will-change: transform;
}

button:hover .login-spinner,
button:focus .login-spinner,
button:active .login-spinner,
button[disabled] .login-spinner,
button[disabled]:hover .login-spinner {
    animation: spin 1s linear infinite !important;
}

.spinner-path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    animation: spinnerDash 1.5s ease-in-out infinite !important;
    will-change: stroke-dasharray, stroke-dashoffset;
}

button:hover .spinner-path,
button:focus .spinner-path,
button:active .spinner-path,
button[disabled] .spinner-path,
button[disabled]:hover .spinner-path {
    animation: spinnerDash 1.5s ease-in-out infinite !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinnerDash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

button svg:not(.login-spinner) {
    display: inline-block;
    vertical-align: middle;
    animation: none !important;
}