/* =========================
   BASE
========================= */
body.login-page {
    margin: 0;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.login-container {
    display: flex;
    height: 100vh;
}

/* =========================
   KIRI (WELCOME)
========================= */
.login-left {
    width: 60%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* =========================
   KANAN (LOGIN FORM)
========================= */
.login-right {
    width: 40%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   BOX LOGIN
========================= */
.login-box {
    width: 80%;
    max-width: 350px;

    /* 🔥 ANIMASI */
    animation: fadeInRight 0.8s ease;
}

/* =========================
   ANIMASI LOGIN
========================= */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   LOGO
========================= */
.logo-login {
    width: 150px; /* 🔥 diperbesar */
    margin-bottom: 20px;
}

/* =========================
   TEXT LOGIN
========================= */
.login-title {
    font-weight: 700;
    color: #1e3c72;
}

.login-subtitle {
    font-size: 14px;
    color: #777;
}

/* =========================
   INPUT
========================= */
.input-modern {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.input-modern:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 2px rgba(42,82,152,0.2);
}

/* =========================
   BUTTON
========================= */
.btn-login {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    transform: scale(1.03);
}

/* =========================
   PASSWORD ICON
========================= */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #888;
}

/* =========================
   WELCOME
========================= */
.welcome-box {
    max-width: 400px;
    text-align: center;
    color: white;

    /* 🔥 ANIMASI */
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.welcome-img {
    max-width: 70%;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 30px;
    font-weight: 700;
}

.welcome-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}

.welcome-footer {
    font-size: 12px;
    opacity: 0.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }
}
/* BACK TO HOME */
.back-home {
    font-size: 13px;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.back-home:hover {
    text-decoration: underline;
}

/* ICON PASSWORD */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #888;
    font-size: 14px;
}