.pl-login-page {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(450px, .92fr);
    color: #071a38;
    background: #f6f8f9;
}

.pl-login-visual {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    color: white;
    isolation: isolate;
}

.pl-login-background,
.pl-login-overlay {
    position: absolute;
    inset: 0;
}

.pl-login-background {
    z-index: -3;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.pl-login-overlay {
    z-index: -2;
    background:
        linear-gradient(
            145deg,
            rgba(5, 25, 54, .96),
            rgba(5, 92, 84, .82)
        );
}

.pl-login-message {
    width: 100%;
    min-height: 100%;
    padding: 50px clamp(35px, 7vw, 105px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pl-login-brand,
.pl-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.pl-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: white;
    background: #0c887c;
    border-radius: 13px;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.pl-login-brand strong,
.pl-mobile-brand strong {
    display: block;
    font-size: 18px;
}

.pl-login-brand small,
.pl-mobile-brand small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
}

.pl-login-copy {
    max-width: 650px;
    padding: 75px 0;
}

.pl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0c887c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pl-login-visual .pl-eyebrow {
    color: #92e2d9;
}

.pl-eyebrow::before {
    width: 26px;
    height: 2px;
    content: "";
    background: currentColor;
}

.pl-login-copy h1 {
    margin: 18px 0;
    color: white;
    font-size: clamp(41px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.pl-login-copy > p {
    max-width: 590px;
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    line-height: 1.75;
}

.pl-login-copy ul {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.pl-login-copy li {
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
}

.pl-login-copy li::before {
    margin-right: 10px;
    content: "✓";
    color: #8fe2d8;
    font-weight: 900;
}

.pl-login-note {
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: 12px;
}

.pl-login-form-side {
    padding: 60px clamp(28px, 6vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-login-card {
    width: 100%;
    max-width: 510px;
}

.pl-mobile-brand {
    display: none;
    margin-bottom: 38px;
    color: #071a38;
}

.pl-mobile-brand small {
    color: #6b7a90;
}

.pl-form-heading h2 {
    margin: 12px 0 10px;
    font-size: clamp(29px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.pl-form-heading p {
    margin: 0 0 28px;
    color: #68778e;
    font-size: 14px;
    line-height: 1.6;
}

.pl-flashes {
    margin-bottom: 18px;
}

.pl-flashes:empty {
    display: none;
}

.pl-form {
    display: grid;
    gap: 19px;
}

.pl-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 850;
}

.pl-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.pl-label-row a {
    margin-bottom: 8px;
    color: #087b70;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.pl-input-wrap {
    position: relative;
}

.pl-input-wrap input {
    width: 100%;
    min-height: 52px;
    padding: 12px 69px 12px 45px;
    color: #071a38;
    background: white;
    border: 1px solid #cfd9df;
    border-radius: 12px;
    outline: none;
    font: inherit;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.pl-input-wrap input:focus {
    border-color: #087b70;
    box-shadow: 0 0 0 4px rgba(8, 123, 112, .10);
}

.pl-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 1;
    color: #7b8a9c;
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-50%);
}

.pl-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    padding: 7px;
    color: #087b70;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
    transform: translateY(-50%);
}

.pl-login-button {
    width: 100%;
    min-height: 53px;
    margin-top: 3px;
    color: white;
    background: #087b70;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    box-shadow: 0 12px 27px rgba(8, 123, 112, .21);
    transition:
        transform .2s ease,
        background .2s ease;
}

.pl-login-button:hover {
    background: #055c54;
    transform: translateY(-1px);
}

.pl-button-loading {
    display: none;
}

.pl-login-button.is-loading .pl-button-text {
    display: none;
}

.pl-login-button.is-loading .pl-button-loading {
    display: inline;
}

.pl-login-button:disabled {
    cursor: wait;
    opacity: .78;
}

.pl-security-note {
    margin-top: 24px;
    padding: 15px 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: #eaf6f4;
    border: 1px solid #d5ece8;
    border-radius: 12px;
}

.pl-lock {
    line-height: 1.4;
}

.pl-security-note p {
    margin: 0;
    color: #53677a;
    font-size: 12px;
    line-height: 1.6;
}

.pl-register-link {
    margin-top: 25px;
    padding-top: 22px;
    display: flex;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid #dde4e8;
    color: #68778e;
    font-size: 13px;
}

.pl-register-link a,
.pl-back-home a {
    color: #087b70;
    font-weight: 850;
    text-decoration: none;
}

.pl-back-home {
    margin-top: 17px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 960px) {
    .pl-login-page {
        grid-template-columns: 1fr;
    }

    .pl-login-visual {
        display: none;
    }

    .pl-login-form-side {
        min-height: calc(100vh - 110px);
        padding: 45px 22px 70px;
    }

    .pl-mobile-brand {
        display: inline-flex;
    }
}

@media (max-width: 520px) {
    .pl-login-form-side {
        align-items: flex-start;
        padding: 28px 17px 55px;
    }

    .pl-form-heading h2 {
        font-size: 30px;
    }

    .pl-register-link {
        align-items: center;
        flex-direction: column;
    }
}