  :root {
            --primary-accent: #00d2ff;
            --secondary-accent: #3a7bd5;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --footer-bg: #030a1c; 
        }

        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background: #020617;
            background-image: 
                radial-gradient(at 0% 0%, rgba(0, 210, 255, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(58, 123, 213, 0.1) 0px, transparent 50%);
            color: #fff;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
        }

        .wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 40px 20px;
        }

        .main-container {
            width: 100%;
            max-width: 1100px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .brand-section { flex: 1; }
        .brand-section h1 {
            font-size: clamp(50px, 8vw, 100px);
            font-weight: 900;
            line-height: 0.85;
            margin: 0;
            text-transform: uppercase;
            background: linear-gradient(to bottom, #fff 50%, rgba(255,255,255,0.1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-section p {
            font-size: 14px;
            letter-spacing: 6px;
            color: var(--primary-accent);
            text-transform: uppercase;
            margin-top: 15px;
        }

        .login-side { width: 100%; max-width: 400px; }

        .clock-box {
            background: var(--glass-bg);
            border-left: 4px solid var(--primary-accent);
            padding: 15px 25px;
            margin-bottom: 25px;
            backdrop-filter: blur(20px);
            border-radius: 4px 15px 15px 4px;
        }

        .clock-box h2 { font-family: monospace; font-size: 38px; margin: 0; }

        .account-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 35px;
            backdrop-filter: blur(20px);
        }

        .input-label {
            font-size: 13px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 8px;
            display: block;
            text-align: left;
            font-weight: 600;
        }

        .input-wrapper { position: relative; }

        .form-control {
            background: rgba(0, 0, 0, 0.4) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            color: #fff !important;
            height: 52px;
            border-radius: 12px;
            font-size: 15px;
            padding-left: 45px !important;
        }

       
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.8) !important;
            opacity: 1;
        }

        .input-wrapper i.field-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 16px;
            pointer-events: none;
        }

        .toggle-eye {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: rgba(255, 255, 255, 0.6);
            z-index: 10;
        }

     .btn-login {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}
.btn-login:hover {
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5); 
    letter-spacing: 3px; 
}

.btn-login:active {
    transform: translateY(0) scale(0.98); 
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-login:hover::after {
    left: 100%;
}
        .curved-footer {
            width: 100%;
            background: var(--footer-bg);
            position: relative;
            padding: 60px 0 30px;
            text-align: center;
            clip-path: ellipse(100% 100% at 50% 100%);
            margin-top: 50px;
            border-top: 1px solid rgba(0, 210, 255, 0.2);
        }

        .curved-footer a {
            color: inherit;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-icons a i {
            font-size: 20px;
            margin: 0 15px;
            color: var(--primary-accent);
        }

        .social-icons a:hover i { color: #fff; transform: scale(1.2); }

        .footer-brand-link {
            color: #fff !important;
            font-weight: bold;
        }
        
        .footer-brand-link:hover { color: var(--primary-accent) !important; }

        @media (max-width: 850px) {
            .main-container { flex-direction: column; text-align: center; }
            .login-side { max-width: 100%; }
            .input-label { text-align: left !important; }
            .curved-footer { clip-path: ellipse(150% 100% at 50% 100%); }
        }

  
    .error-box {
        background: rgba(255, 68, 68, 0.1);
        border-left: 4px solid #ff4444;
        color: #ff8080;
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 13px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left !important; 
    }

    .text-danger {
        display: block;
        text-align: left !important;
        margin-top: 5px;
        font-weight: 500;
    }

    @media (max-width: 850px) {
        form {
            text-align: left !important;
        }
        .error-box {
            text-align: left !important;
        }
    }
    .mb-4 {
        margin-bottom: 1.5rem !important;
        text-align: left; 
    }
.animation_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden;
    background: transparent;
}

.anim_dot_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 20s infinite linear;
}

.dot-big {
    width: 4px;
    height: 4px;
    background: rgba(0, 210, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
}

[class*="dot-random"] {
    background: rgba(255, 255, 255, 0.6);
    filter: blur(1px);
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}


.dot-x1 { left: 10%; top: 80%; animation-delay: 0s; width: 2px; height: 2px; }
.dot-x2 { left: 25%; top: 90%; animation-delay: 2s; width: 3px; height: 3px; }
.dot-x3 { left: 40%; top: 85%; animation-delay: 4s; width: 1px; height: 1px; }
.dot-random-1 { left: 55%; top: 95%; animation-duration: 25s; background: var(--primary-accent); }
.dot-x31 { left: 70%; top: 70%; animation-delay: 1s; }
.dot-x32 { left: 85%; top: 80%; animation-delay: 5s; }

.brand-section h1 {
    display: block;
    min-height: 1.2em; 
}

.typewriter-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charAppear 0.5s forwards;
    background: linear-gradient(to bottom, #fff 50%, rgba(255,255,255,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes charAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background-color: var(--primary-accent);
    margin-left: 5px;
    animation: blink 0.7s infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% { opacity: 0; }
}
   