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

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* LEFT SIDE - IMAGE SECTION */
.login-visual {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy); /* Fallback to Navy */
}

.slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: brightness(0.8) contrast(1.05);
    animation: kenBurns 30s infinite linear, crossFade 30s infinite linear;
}

/* 6 images: 30s total. Each gets 5s. */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide:nth-child(5) { animation-delay: 16s; }
.slide:nth-child(6) { animation-delay: 20s; }

@keyframes kenBurns {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.25); }
}

@keyframes crossFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    16.66% { opacity: 1; }
    21.66% { opacity: 0; }
    100% { opacity: 0; }
}

.login-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 73, 131, 0.7), rgba(12, 73, 131, 0.3));
    z-index: 2;
}

.visual-content {
    position: relative;
    z-index: 3;
    color: transparent;
    max-width: 600px;
}

.visual-content h2 {
    font-size: 5rem;
    font-weight: 800;
    -webkit-text-stroke: 2px #000000;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0px 5px rgb(255 255 255 / 35%);
}

.visual-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* RIGHT SIDE - FORM SECTION */
.login-form-area {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(3px);
    padding: 32px;
    border-radius: 24px;
    border-top: 6px solid var(--accent-orange);
    box-shadow: 0 25px 50px -12px rgb(12 73 131 / 50%);
}

.login-header {
    margin-bottom: 32px;
    text-align: center;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.subtitle {
    color: #475569;
    font-size: 15px;
}

/* FORM STYLING */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #000000;
    font-size: 15px;
    transition: all 0.2s;
    background: #fcfdfe;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

.login-btn:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(12, 73, 131, 0.2);
}

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

.footer-text {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .login-visual {
        display: none;
    }
    .login-form-area {
        flex: 1;
        padding: 20px;
    }
}