body,
html {
    min-height: 100vh;
    margin: 0;
}

:root {
    --pria-blue: #0f7cb1;
    --pria-deep-blue: #051521;
    --pria-gray: #646874;
    --red-alert: #ff5e5e;
    --width: 38%;
    --padding: 20px;
    width: 100vw;
}
.splash-wrapper h1,
.splash-wrapper h2,
.splash-wrapper h3,
.splash-wrapper h4,
.splash-wrapper h5,
.splash-wrapper p {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.splash-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: rgb(1, 143, 190);
    background: linear-gradient(180deg, rgba(1, 143, 190, 1) 0%, rgba(48, 188, 214, 1) 100%);
    position: relative;
    padding-right: calc(38% + 20px);
    align-items: center;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.splash-wrapper > * {
    padding: 0 20px;
}

.splash-wrapper .flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.splash-wrapper .lc {
    align-items: self-start;
    max-width: 570px;
}
.splash-wrapper .h {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -66px;
}
.splash-wrapper .h img {
    margin-right: 16px;
}

.splash-wrapper h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0 80px;
}
.splash-wrapper h2 {
    font-size: 45px;
    font-weight: 400;
    margin: 0;
}
.splash-wrapper h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--pria-deep-blue);
    margin-top: 26px;
}
.splash-wrapper p {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
}
.splash-wrapper a {
    font-weight: 700;
}
.splash-wrapper .lc a {
    margin-top: 56px;
}

.splash-wrapper .lf {
    align-items: center;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: var(--width);
}

.splash-wrapper .lf img {
    height: 80px;
    margin: 0 auto;
}

.splash-wrapper form#localAccountForm {
    margin-top: 20px;
}
.splash-wrapper .intro {
    display: none;
}
.splash-wrapper .entry,
.splash-wrapper .entry-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.splash-wrapper .entry-item label {
    color: var(--pria-deep-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.splash-wrapper .password-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.splash-wrapper .entry-item input {
    margin-top: 12px;
    width: 380px;
    height: 67px;
    border: 2px solid var(--pria-gray);
    border-radius: 33px;
    padding: 0 20px;
    font-weight: 700;
    color: var(--pria-gray);
}
.splash-wrapper #forgotPassword {
    color: var(--pria-blue);
    font-size: 12px;
    text-transform: uppercase;
    display: none;
}
.splash-wrapper .buttons {
    display: flex;
    flex-direction: column;
}
.splash-wrapper .buttons button {
    border-radius: 33px;
    height: 66px;
    background: var(--pria-blue);
    font-weight: 700;
    border: none;
    margin-top: 24px;
    cursor: pointer;
}
.splash-wrapper input:focus {
    outline: none;
}
.splash-wrapper .error p {
    color: var(--red-alert);
    font-size: 16px;
    margin: 6px 0 0;
    font-weight: 700;
}
.splash-wrapper .error.pageLevel p {
    margin-bottom: 40px;
    text-align: center;
}
.splash-wrapper input.highlightError {
    border-color: var(--red-alert);
}
.splash-wrapper .loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--pria-blue);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin: 40px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
