.login-body {
    min-height: 100vh;
    margin: 0;
    background: #fff5f5;
    color: #1f2f46;
    font-family: Arial, Helvetica, sans-serif;
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 47px 24px;
}

.login-shell {
    width: min(960px, 100%);
}

.login-brandbar {
    height: 85px;
    display: grid;
    grid-template-columns: 136px 1fr;
    align-items: center;
    gap: 16px;
    padding: 15px 16px;
    margin-top: 100px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 6px;
}

.login-logo {
    color: #2A3B8E;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}

.login-brandtitle {
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 16px;
    background: #f7f8fa;
    border-radius: 4px;
    color: #0f2442;
    font-size: 14px;
}

.login-card {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 395px;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
}

.login-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 395px;
    padding: 32px;
    background: #2A3B8E;
    color: #fff;
    text-align: center;
}

.login-visual h1 {
    margin: 16px 0 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.login-visual p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.login-shield {
    position: relative;
    width: 64px;
    height: 78px;
    display: grid;
    place-items: center;
    background: black;
    clip-path: polygon(50% 0, 100% 18%, 100% 47%, 96% 62%, 85% 78%, 67% 91%, 50% 100%, 33% 91%, 15% 78%, 4% 62%, 0 47%, 0 18%);
}

    .login-shield::before {
        content: "";
        position: absolute;
        inset: 7px;
        border: 4px solid #2A3B8E;
        border-radius: 45% 45% 50% 50%;
        clip-path: polygon(50% 0, 100% 15%, 100% 52%, 92% 71%, 70% 90%, 50% 100%, 30% 90%, 8% 71%, 0 52%, 0 15%);
    }

.login-avatar {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 48px;
}

.login-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 23px;
    height: 23px;
    transform: translateX(-50%);
    background: #eff3f6;
    border-radius: 50%;
}

.login-avatar span {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 38px;
    height: 19px;
    transform: translateX(-50%);
    background: #eff3f6;
    border-radius: 50% 50% 45% 45%;
}

.login-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.login-form-panel h2 {
    margin: 0 0 11px;
    color: #27384d;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
}

.login-form-panel > p {
    margin: 0 0 26px;
    color: #8284b3;
    font-size: 13px;
}

.login-field {
    margin-bottom: 16px;
}

.login-field label {
    display: block;
    margin-bottom: 7px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.login-field .form-control {
    height: 38px;
    border-color: #c9cdd3;
    border-radius: 3px;
    color: #1f2f46;
    font-size: 14px;
}

.login-field .form-control::placeholder {
    color: #536389;
}

.login-field .form-control:focus {
    border-color: #8ca8d8;
    box-shadow: 0 0 0 .2rem rgba(61, 125, 231, .12);
}

.login-password .btn {
    width: 39px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border-color: #c9cdd3;
    border-radius: 0 3px 3px 0;
    background: #f1f5f9;
    color: #24354e;
    font-size: 15px;
}

.login-submit {
    width: 100%;
    height: 38px;
    margin-top: 5px;
    border: 0;
    border-radius: 3px;
    background: #343a40;
    color: #fff;
    font-size: 14px;
}

.login-submit:hover,
.login-submit:focus {
    background: #252b31;
    color: #fff;
}

.login-forgot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 31px;
    color: #4d8cff;
    font-size: 14px;
    text-decoration: none;
}

.login-forgot:hover {
    color: #2c70e8;
    text-decoration: underline;
}

.login-forgot span {
    font-size: 11px;
}

@media (max-width: 767.98px) {
    .login-page {
        padding: 24px 14px;
    }

    .login-brandbar {
        height: auto;
        grid-template-columns: 1fr;
    }

    .login-card {
        grid-template-columns: 1fr;
    }

    .login-visual {
        min-height: 230px;
    }

    .login-form-panel {
        padding: 28px 20px;
    }
}
