* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #005c97;
    --color-primary-dark: #363795;
    --color-primary-light: #005c97;
    --color-bg-dark: #010a14;
    --color-bg-darker: #010a14;
    --color-surface: #091a2d;
    --color-surface-light: #0f2438;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(0, 92, 151, 0.2);
    --color-border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 0 20px rgba(0, 92, 151, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-bg-darker);
}
 
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
 
body {
    background: linear-gradient(135deg, #020e1c 0%, #020e1c 25%, #020e1c 50%, #0b0c25 75%, #020e1c 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
 
.container {
    position: relative;
    z-index: 10;
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
 
.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.left-section::-webkit-scrollbar {
    width: 6px;
}

.left-section::-webkit-scrollbar-track {
    background: transparent;
}

.left-section::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}
 
.logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 40px rgba(0, 92, 151, 0.8)) drop-shadow(0 0 80px rgba(0, 92, 151, 0.6)) drop-shadow(0 0 120px rgba(0, 92, 151, 0.4));
    animation: logoGlow 3s ease-in-out infinite, slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 40px rgba(0, 92, 151, 0.8),
        0 0 80px rgba(0, 92, 151, 0.6),
        0 0 120px rgba(0, 92, 151, 0.4),
        inset 0 0 40px rgba(0, 92, 151, 0.2);
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 92, 151, 0.8)) drop-shadow(0 0 80px rgba(0, 92, 151, 0.4)); }
    50% { filter: drop-shadow(0 0 60px rgba(0, 92, 151, 1)) drop-shadow(0 0 100px rgba(0, 92, 151, 0.7)); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Branding */
.branding {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 92, 151, 0.2);
    background: linear-gradient(90deg, #ffffff, #005c97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 92, 151, 0.3); }
    50% { text-shadow: 0 0 40px rgba(0, 92, 151, 0.6); }
}

.subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Badges */
.badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 92, 151, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
    box-shadow: inset 0 0 10px rgba(0, 92, 151, 0.05);
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.badge:hover {
    background: rgba(0, 92, 151, 0.15);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 92, 151, 0.3), inset 0 0 10px rgba(0, 92, 151, 0.1);
    transform: translateY(-2px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 92, 151, 0.3); }
    50% { text-shadow: 0 0 15px rgba(0, 92, 151, 0.8); }
}

@keyframes textFloat {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
 
.stats-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 120px;
    position: relative;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat:hover {
    background: rgba(0, 92, 151, 0.08);
    border-color: var(--color-border);
    transform: translateX(5px);
    box-shadow: var(--shadow-red);
}

.stat-icon {
    font-size: 40px;
    min-width: auto;
    text-align: center;
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-content {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 2px;
    background: linear-gradient(135deg, #005c97, #363795);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    animation: textFloat 3s ease-in-out infinite;
}
 
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
 
.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(2, 14, 28, 0.9);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 92, 151, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: cardSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: none;
}

.shield-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 92, 151, 0.4));
}

.header-text h2 {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 5px;
    font-weight: 700;
}

.header-text p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}
 
.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border-light);
}

.tab-button {
    flex: 1;
    padding: 15px 0;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-button span {
    position: relative;
    z-index: 2;
}

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.tab-button.active {
    color: var(--color-primary);
}

.tab-button.active .tab-indicator {
    transform: scaleX(1);
}

.tab-button:hover {
    color: var(--color-text);
}
 
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 0.3s ease forwards;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
 
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 16px;
    z-index: 2;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.form-group:focus-within .input-icon {
    opacity: 1;
    color: var(--color-primary);
}

.form-group input {
    padding: 12px 12px 12px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 92, 151, 0.3);
}

.form-group input:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 92, 151, 0.2);
}
 
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 10px;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition);
}

.checkbox-label:hover {
    color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.forgot-password {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}
 
.reject-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reject-checkbox .checkbox-wrapper * {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.reject-checkbox .checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.reject-checkbox .checkbox-wrapper label {
    --size: 28px;
    --shadow: calc(var(--size) * 0.07) calc(var(--size) * 0.1);
    position: relative;
    display: block;
    width: var(--size);
    height: var(--size);
    margin: 0;
    background-color: #005c97;
    background-image: linear-gradient(
        43deg,
        #005c97 0%,
        #363795 46%,
        #363795 100%
    );
    border-radius: 50%;
    box-shadow: 0 var(--shadow) #5ba3c9, 0 0 20px rgba(0, 92, 151, 0.3);
    cursor: pointer;
    transition: 0.2s ease transform, 0.2s ease background-color,
        0.2s ease box-shadow;
    overflow: hidden;
    z-index: 1;
}

.reject-checkbox .checkbox-wrapper label:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: calc(var(--size) * 0.7);
    height: calc(var(--size) * 0.7);
    margin: 0 auto;
    background-color: #fff;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: inset 0 var(--shadow) #5ba3c9;
    transition: 0.2s ease width, 0.2s ease height;
}

.reject-checkbox .checkbox-wrapper label:hover:before {
    width: calc(var(--size) * 0.55);
    height: calc(var(--size) * 0.55);
    box-shadow: inset 0 var(--shadow) #5ba3c9;
}

.reject-checkbox .checkbox-wrapper label:active {
    transform: scale(0.9);
}

.reject-checkbox .checkbox-wrapper .tick_mark {
    position: absolute;
    top: 9px;
    left: 2px;
    right: 0;
    width: calc(var(--size) * 0.6);
    height: calc(var(--size) * 0.6);
    margin: 0 auto;
    margin-left: calc(var(--size) * 0.14);
    transform: rotateZ(-92deg);
}

.reject-checkbox .checkbox-wrapper .tick_mark:before,
.reject-checkbox .checkbox-wrapper .tick_mark:after {
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s ease transform, 0.2s ease opacity;
}

.reject-checkbox .checkbox-wrapper .tick_mark:before {
    left: 0;
    bottom: 0;
    width: calc(var(--size) * 0.1);
    height: calc(var(--size) * 0.3);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
    transform: translateY(calc(var(--size) * -0.68));
}

.reject-checkbox .checkbox-wrapper .tick_mark:after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(var(--size) * 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
    transform: translateX(calc(var(--size) * 0.78));
}

.reject-checkbox .checkbox-wrapper input[type="checkbox"]:checked + label {
    background-color: #005c97;
    background-image: linear-gradient(
        43deg,
        #005c97 0%,
        #005c97 46%,
        #363795 100%
    );
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px, 0 0 30px rgba(0, 92, 151, 0.6);
}

.reject-checkbox
    .checkbox-wrapper
    input[type="checkbox"]:checked
    + label:before {
    width: 0;
    height: 0;
}

.reject-checkbox
    .checkbox-wrapper
    input[type="checkbox"]:checked
    + label
    .tick_mark:before,
.reject-checkbox
    .checkbox-wrapper
    input[type="checkbox"]:checked
    + label
    .tick_mark:after {
    background-color: #fff;
    width: calc(var(--size) * 0.4);
    height: calc(var(--size) * 0.1);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.reject-checkbox
    .checkbox-wrapper
    input[type="checkbox"]:checked
    + label
    .tick_mark:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.reject-checkbox
    .checkbox-wrapper
    input[type="checkbox"]:checked
    + label
    .tick_mark:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.remember-text {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition);
}

.reject-checkbox:hover .remember-text {
    color: var(--color-text);
}
 
.btn-primary {
    padding: 12px 24px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 92, 151, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    box-shadow: 0 0 30px rgba(0, 92, 151, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
 
.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
 
.btn-google {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.google-icon {
    font-size: 16px;
}
 
.card-footer {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.register-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.register-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}
 
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 1000;
    animation: speeder 0.4s linear infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loader.active {
    opacity: 1;
    pointer-events: auto;
}

.loader > span {
    height: 5px;
    width: 35px;
    background: #363795;
    position: absolute;
    top: -19px;
    left: 60px;
    border-radius: 2px 10px 1px 0;
}

.base span {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #5ba3c9;
    border-bottom: 6px solid transparent;
}

.base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #5ba3c9;
    position: absolute;
    right: -110px;
    top: -16px;
}

.base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #5ba3c9;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #5ba3c9;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: -125px;
    top: -15px;
}

.face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #363795;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 2px 2px;
}

.loader > span > span {
    width: 30px;
    height: 1px;
    background: #ffffff;
    position: absolute;
}

.loader > span > span:nth-child(1) {
    animation: fazer1 0.2s linear infinite;
}

.loader > span > span:nth-child(2) {
    top: 3px;
    animation: fazer2 0.4s linear infinite;
}

.loader > span > span:nth-child(3) {
    top: 1px;
    animation: fazer3 0.4s linear infinite;
    animation-delay: -1s;
}

.loader > span > span:nth-child(4) {
    top: 4px;
    animation: fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes fazer1 {
    0% { left: 0; }
    100% { left: -80px; opacity: 0; }
}

@keyframes fazer2 {
    0% { left: 0; }
    100% { left: -100px; opacity: 0; }
}

@keyframes fazer3 {
    0% { left: 0; }
    100% { left: -50px; opacity: 0; }
}

@keyframes fazer4 {
    0% { left: 0; }
    100% { left: -150px; opacity: 0; }
}

@keyframes speeder {
    0% { transform: translate(2px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -3px) rotate(-1deg); }
    20% { transform: translate(-2px, 0px) rotate(1deg); }
    30% { transform: translate(1px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 3px) rotate(-1deg); }
    60% { transform: translate(-1px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-2px, -1px) rotate(1deg); }
    90% { transform: translate(2px, 1px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
 
.longfazers {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #ffffff;
}

.longfazers span:nth-child(1) {
    top: 20%;
    animation: lf 0.6s linear infinite;
    animation-delay: -5s;
}

.longfazers span:nth-child(2) {
    top: 40%;
    animation: lf2 0.8s linear infinite;
    animation-delay: -1s;
}

.longfazers span:nth-child(3) {
    top: 60%;
    animation: lf3 0.6s linear infinite;
}

.longfazers span:nth-child(4) {
    top: 80%;
    animation: lf4 0.5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% { left: 200%; }
    100% { left: -200%; opacity: 0; }
}

@keyframes lf2 {
    0% { left: 200%; }
    100% { left: -200%; opacity: 0; }
}

@keyframes lf3 {
    0% { left: 200%; }
    100% { left: -100%; opacity: 0; }
}

@keyframes lf4 {
    0% { left: 200%; }
    100% { left: -100%; opacity: 0; }
}
 
.clouds {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.12;
    animation: moveClouds linear infinite;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.cloud::before {
    width: 60%;
    height: 60%;
    top: -30%;
    left: 10%;
}

.cloud::after {
    width: 40%;
    height: 40%;
    top: -20%;
    left: 50%;
}

.cloud1 {
    width: 100px;
    height: 60px;
    top: 15%;
    left: 1400px;
    animation-duration: 25s;
}

.cloud2 {
    width: 150px;
    height: 80px;
    top: 35%;
    left: 1600px;
    animation-duration: 30s;
}

.cloud3 {
    width: 80px;
    height: 50px;
    top: 20%;
    left: 2000px;
    animation-duration: 35s;
}

.cloud4 {
    width: 100px;
    height: 80px;
    top: 70%;
    left: 1100px;
    animation-duration: 28s;
}

.cloud5 {
    width: 170px;
    height: 50px;
    top: 80%;
    left: 1500px;
    animation-duration: 22s;
}

@keyframes moveClouds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}
 
.auth-container {
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 36px;
    border: 1px solid rgba(0, 92, 151, 0.2);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.security-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}
 
.tab-switch-container {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    border-radius: 16px;
}

.tab-switch {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.tab-switch.active {
    background: linear-gradient(135deg, #005c97, #363795);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 92, 151, 0.4);
}

.tab-switch:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}
 
.form-container {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
 
.auth-form {
    display: none;
    flex-direction: column;
    gap: 18px;
    animation: slideIn 0.4s ease;
}

.auth-form.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
 
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
}

.input-wrapper:focus-within .input-icon {
    opacity: 1;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
    outline: none;
    filter: grayscale(100%) brightness(0.8);
    padding: 4px;
    width: auto;
    height: auto;
    box-shadow: none;
}

.toggle-password:hover,
.toggle-password:focus,
.toggle-password:active {
    opacity: 1;
    color: rgba(255, 255, 255, 0.6);
    filter: grayscale(100%) brightness(1);
    outline: none;
    box-shadow: none;
    border: none;
}
 
.auth-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(0, 92, 151, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.auth-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 92, 151, 0.5);
}

.auth-input:focus {
    background: rgba(0, 92, 151, 0.08);
    border-color: #005c97;
    box-shadow: 0 0 20px rgba(0, 92, 151, 0.4), inset 0 0 8px rgba(0, 92, 151, 0.08);
}

.password-input {
    padding-right: 40px;
}
 
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin: 4px 0;
}
 
.checkbox-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #005c97;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-input:hover {
    accent-color: #005c97;
}

.checkbox-minimal:hover {
    color: rgba(255, 255, 255, 0.9);
}

.link-inline {
    color: #005c97;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #005c97;
}
 
.forgot-password-link {
    color: #005c97;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 12px;
}

.forgot-password-link:hover {
    color: #005c97;
    text-decoration: underline;
}
 
.auth-button {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
 
.primary-button {
    background: linear-gradient(135deg, #005c97, #363795);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 92, 151, 0.3);
}

.primary-button:hover {
    background: linear-gradient(135deg, #005c97, #363795);
    box-shadow: 0 8px 30px rgba(0, 92, 151, 0.5);
    transform: scale(1.03);
}

.primary-button:active {
    transform: scale(0.97);
}
 
.google-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(0, 92, 151, 0.2);
    color: #ffffff;
    box-shadow: none;
    text-transform: capitalize;
}

.google-button:hover {
    background: rgba(0, 92, 151, 0.1);
    border-color: rgba(0, 92, 151, 0.4);
    box-shadow: 0 4px 15px rgba(0, 92, 151, 0.2);
}

.google-button svg {
    width: 18px;
    height: 18px;
}
 
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 92, 151, 0.3), transparent);
}
 
.auth-footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.switch-form-link {
    color: #005c97;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.switch-form-link:hover {
    color: #005c97;
    text-decoration: underline;
}
 
@media (max-width: 1200px) {
    .title {
        font-size: 42px;
    }

    .left-section {
        padding: 40px 20px;
    }

    .right-section {
        padding: 30px;
    }

    .premium-container {
        --form-width: 320px;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        overflow-y: auto;
    }

    .left-section {
        padding: 40px 20px 20px;
        justify-content: flex-start;
        min-height: auto;
    }

    .right-section {
        justify-content: flex-start;
        padding: 20px;
    }

    .logo {
        max-width: 100px;
    }

    .title {
        font-size: 36px;
    }

    .badges-container,
    .stats-container {
        max-width: 100%;
    }

    .premium-container {
        --form-width: 300px;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .stat {
        min-width: auto;
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        overflow-y: auto;
    }

    .left-section {
        padding: 30px 16px 15px;
        min-height: auto;
    }

    .right-section {
        padding: 16px;
    }

    .branding {
        margin-bottom: 12px;
    }

    .title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .badges-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 8px;
    }

    .stats-container {
        flex-direction: row;
        gap: 8px;
    }

    .stat {
        padding: 10px 8px;
        flex: 1;
    }

    .stat-icon {
        font-size: 18px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 10px;
    }

    .auth-container {
        padding: 20px 16px;
    }

    .auth-title {
        font-size: 20px;
    }

    .auth-subtitle {
        font-size: 12px;
    }

    .tab-switch {
        font-size: 13px;
        padding: 10px 16px;
    }

    .auth-input {
        padding: 11px 11px 11px 36px;
        font-size: 13px;
    }

    .auth-button {
        padding: 11px;
        font-size: 13px;
    }

    .login-card {
        max-width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 400px) {
    .left-section {
        padding: 20px 12px 10px;
    }

    .right-section {
        padding: 12px;
    }

    .title {
        font-size: 22px;
    }

    .badges-container {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .stats-container {
        flex-direction: column;
    }

    .auth-container {
        padding: 16px 12px;
        border-radius: 12px;
    }
}
