:root {
    --primary-color: #028858;
    --secondary-color: #0f4c81;
    --card-bg: rgba(255, 255, 255, 0.94);
}
body.login-body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, rgba(2, 136, 88, 0.9), rgba(15, 76, 129, 0.9)),
                url("../assets/images/background-login.jpg") center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-family: "Poppins", "Roboto", sans-serif;
    color: #0c2238;
}
.login-wrapper {
    width: 100%;
    max-width: 1100px;
}
.login-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
}
.login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(2,136,88,0.6), rgba(15,76,129,0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}
.login-card__info,
.login-card__form {
    flex: 1 1 50%;
    padding: 48px;
    position: relative;
    z-index: 1;
}
.login-card__info {
    background: linear-gradient(135deg, rgba(3, 96, 76, 0.9), rgba(2, 136, 88, 0.8)),
                url("../assets/images/background-login.jpg") center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-card__info h1 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}
.login-card__info p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.login-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.login-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 0.9rem;
    font-weight: 500;
}
.login-highlights li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    margin-right: 12px;
    font-size: 0.95rem;
}
.login-card__form {
    background: #ffffff;
}
.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.login-logo img {
    max-width: 150px;
}
.login-logo h5 {
    margin: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
}
.login-card__form .form-control {
    border-radius: 12px;
    border-color: #dde3ea;
    padding: 14px 16px;
}
.login-card__form .input-group-text {
    border-radius: 12px 0 0 12px;
    background: #eef3f8;
    border-color: #dde3ea;
    color: var(--primary-color);
}
.login-card__form .btn-info {
    border-radius: 14px;
    padding: 12px 0;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 10px 20px rgba(2,136,88,0.3);
}
.login-card__form .btn-info:hover {
    transform: translateY(-1px);
}
.captcha-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}
.captcha-wrapper img {
    border-radius: 12px;
    border: 1px solid #dde3ea;
    cursor: pointer;
}
.login-meta {
    margin-top: 16px;
    text-align: center;
    color: #cfd8e3;
    font-size: 0.9rem;
}
@media (max-width: 991px) {
    .login-card {
        flex-direction: column;
    }
    .login-card__info,
    .login-card__form {
        flex: 1 1 100%;
        padding: 32px;
    }
    .login-card__info {
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
}
@media (max-width: 575px) {
    .login-card__form .input-group {
        flex-direction: column;
    }
    .login-card__form .input-group-text {
        width: 100%;
        border-radius: 12px 12px 0 0;
        justify-content: center;
        margin-bottom: 6px;
    }
    .login-card__form .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}
