/* ===== PAGE LAYOUT ===== */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    background: #000;
}

/* ===== LEFT BANNER (60%) ===== */
.login-banner {
    width: 60%;
    height: 100vh;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideShow 24s infinite;
}

/* ===== RIGHT LOGIN (40%) ===== */
.login-panel {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.login-form {
    width: 320px;
}

/* ===== TEXT ===== */
.login-form h2 {
    text-align: center;
    color: var(--cream);
    margin-bottom: 20px;
}

.signup-link {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 14px;
}

.signup-link:hover {
    text-decoration: underline;
}

/* ===== BANNER SLIDER ===== */
@keyframes slideShow {
    0%   { background-image: url('../resources/images/banner1.png'); }
    25%  { background-image: url('../resources/images/banner2.png'); }
    50%  { background-image: url('../resources/images/banner3.png'); }
    75%  { background-image: url('../resources/images/banner4.png'); }
    100% { background-image: url('../resources/images/banner1.png'); }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .login-banner {
        display: none;
    }
    .login-panel {
        width: 100%;
    }
}