* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(210, 29%, 97%);
    --foreground: hsl(0, 0%, 10%);
    --primary: hsl(194, 100%, 46%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(194, 100%, 60%);
    --secondary: hsl(189, 100%, 23%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(186, 67%, 94%);
    --muted-foreground: hsl(189, 100%, 23%);
    --border: hsl(186, 67%, 88%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 10%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, hsla(194, 100%, 46%, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, hsla(189, 100%, 23%, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.auth-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auth-left h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-left p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 500px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px hsla(194, 100%, 46%, 0.3);
}

.benefit-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

.auth-right {
    display: flex;
    justify-content: center;
}

.auth-card {
    background: var(--card);
    border-radius: 1.75rem;
    padding: 3rem;
    box-shadow: 
        0 8px 32px hsla(189, 100%, 23%, 0.1),
        0 0 0 1px hsla(186, 67%, 88%, 0.5);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 500px;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-card h2 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.auth-card .subtitle {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--foreground);
    font-size: 0.9375rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px hsla(194, 100%, 46%, 0.1);
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.remember-forgot input[type="checkbox"] {
    accent-color: var(--primary);
    cursor: pointer;
}

.remember-forgot a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remember-forgot a:hover {
    color: var(--secondary);
}

.btn-login {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px hsla(194, 100%, 46%, 0.35);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px hsla(194, 100%, 46%, 0.5);
}

.btn-login span {
    position: relative;
    z-index: 1;
}

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 0.875rem;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.btn-social:hover {
    border-color: var(--primary);
    background: var(--muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px hsla(194, 100%, 46%, 0.15);
}

.auth-footer {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    margin-bottom: 2rem;
    font-size: 1.375rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 24px hsla(194, 100%, 46%, 0.4), 0 0 40px hsla(194, 100%, 46%, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
        @keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover .logo-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 
        0 8px 32px hsla(194, 100%, 46%, 0.5),
        0 0 60px hsla(194, 100%, 46%, 0.3);
}
        html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid var(--background);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-glow), var(--primary));
}

@media (max-width: 768px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-left {
        display: none;
    }

    .auth-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem;
    }

    .auth-card h2 {
        font-size: 1.5rem;
    }

    .social-login {
        grid-template-columns: 1fr;
    }
}