* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eaf1ff, #f7f9ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 900px;
    max-width: 95%;
    background: #fff;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}



/* LEFT */
.login-left {
    background: rgba(240, 243, 250, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;
    border-radius: 24px 0 0 24px;
}

.login-left img {
    width: 200px;
    margin-bottom: 24px;

    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}


.login-left h2 {
    color: #0b4fad;
    font-weight: 700;
    margin-bottom: 0px;
}

.login-left p {
    color: #4f5f7a;
    font-size: 14px;
}


/* RIGHT */
.login-right {
    padding: 50px 40px;
}

.login-right h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #0b4fad;
}

/* INPUT */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #0b4fad;
}

.input-group input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border-radius: 12px;
    border: 1px solid #d3dcef;
    font-size: 15px;
    outline: none;
}

.input-group input:focus {
    border-color: #0b4fad;
    box-shadow: 0 0 6px rgba(11,79,173,0.25);
}

/* BUTTON */
.login-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #0b4fad;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.login-btn:hover {
    background: #093b82;
}

.login-alert {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ERROR */
.login-alert .error {
    background: #fde2e2;
    color: #b91c1c;
    border-left: 5px solid #ef4444;
}

.login-alert i {
    font-size: 16px;
}



/* FOOTER */
.login-footer {
    margin-top: 14px;
    text-align: center;
}

.login-footer a {
    font-size: 13px;
    color: #0b4fad;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }
}
