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

body {
    font-family: 'Inter', sans-serif;
    background: var(--stream-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--stream-gold);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--stream-gold);
    bottom: 15%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #00ccff;
    top: 50%;
    left: 80%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 1100px;
    min-height: 700px;
    margin: 2rem;
}

.login-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-left {
    background: var(--primary-gradient);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveGrid 20s linear infinite;
    z-index: 0;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.brand-section {
    position: relative;
    z-index: 1;
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo i {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
    font-size: 2rem;
}

.brand-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.features-list i {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    margin-right: 12px;
    font-size: 0.9rem;
}

.login-right {
    padding: 3rem;
}

.login-header {
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-floating {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-floating input {
    border: 2px solid #e1e5ee;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    height: 56px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-floating input:focus {
    border-color: var(--stream-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-floating label {
    padding-left: 3rem;
    color: #777;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 30%;
    transform: translateY(-50%);
    color: #777;
    z-index: 5;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-check-label {
    color: #555;
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--stream-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--stream-blue);
    text-decoration: underline;
}

.btn-login {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login i {
    margin-right: 8px;
}

.register-link {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.register-link a {
    color: var(--stream-blue);
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Animation for form */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .login-left {
        padding: 2rem;
    }

    .login-right {
        padding: 2rem;
    }

    .brand-logo {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .login-container {
        margin: 1rem;
    }

    .login-card {
        flex-direction: column;
    }

    .login-left {
        padding: 2rem 1.5rem;
    }

    .login-right {
        padding: 2rem 1.5rem;
    }

    .social-login {
        flex-direction: column;
    }
} 