.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #e7f0fc 0%, #f8fbff 55%, #eaf5ff 100%);
}

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

.login-home-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 30;
    border: 1px solid #c7d9ef;
    background: rgba(255, 255, 255, .9);
    color: #1d3d61;
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
    min-height: 40px;
}

.login-home-btn:hover {
    background: #ffffff;
    color: #123454;
}

.login-left {
    width: min(100%, 460px);
    background: #ffffff;
    padding: 64px 34px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #d7e4f5;
    box-shadow: 10px 0 40px rgba(13, 34, 58, .08);
    position: relative;
    z-index: 10;
}

.login-brand {
    font-size: 28px;
    font-weight: 700;
    color: #11345a;
    margin-bottom: 22px;
}

.login-form {
    margin-top: 10px;
}

.login-input {
    border-radius: 11px;
    padding: 12px 14px;
    border: 1px solid #cad8ea;
    background: #fbfdff;
    color: #16314e;
    min-height: 46px;
}

.login-input:focus {
    border-color: #7cb0e7;
    box-shadow: 0 0 0 .2rem rgba(20, 93, 160, .16);
    background: #ffffff;
}

.btn-login {
    background: linear-gradient(135deg, #1f75c2, #145da0);
    border: none;
    color: #fff;
    border-radius: 11px;
    padding: 12px;
    font-weight: 700;
    transition: .2s ease;
    min-height: 46px;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(20, 93, 160, .22);
}

.login-forgot {
    text-align: right;
    margin-top: 12px;
}

.login-forgot a {
    color: #28598a;
    font-size: 13px;
    text-decoration: none;
}

.login-forgot a:hover {
    color: #0f3f70;
    text-decoration: underline;
}

.login-footer {
    margin-top: 26px;
    font-size: 12px;
    color: #6a7f99;
}

.login-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 93, 160, .2), rgba(20, 93, 160, .45));
}

@media (max-width: 992px) {
    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
        border-right: 0;
        box-shadow: none;
    }
}

@media (max-width: 576px) {
    .login-home-btn {
        top: 12px;
        left: 12px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .login-left {
        padding: 58px 12px 18px;
    }

    .login-brand {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .login-footer {
        margin-top: 14px;
        font-size: 11px;
    }
}
