html {
    color: #333;
    color: oklch(0.3211 0 0);
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 15px;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(58deg, rgba(44,88,150,1) 0%, rgba(87,150,202,1) 100%);
}

img {
    max-width: 100%;
    max-height: 100%;
}

p {
    line-height: 1.4em;
}

.flex-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

.login-box {
    width: 70%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    background-color: #f1f3f9;
    border-radius: 4px;
    box-sizing: border-box;
}

    .login-box > .column {
        height: 100%;
        padding: 24px;
        box-sizing: border-box;
    }

    .login-box .column:first-child {
        border-right: solid 1px #e1e6f3;
        justify-content: space-between;
        align-content: space-between;
        justify-items: stretch;
        align-items: stretch;
    }

.btn {
    padding: 12px 20px;
    display: inline-block;
    color: #f1f3f9;
    color: oklch(0.9643 0.0083 271.33);
    font-size: 1rem;
    letter-spacing: .03rem;
    line-height: 1em;
    text-decoration: none;
    background: #102f73;
    background: oklch(0.3293 0.123 262.97);
    border-radius: 4px;
    border: solid 2px transparent;
    transition: all 250ms ease;
    vertical-align: middle;
}

    .btn.large {
        height: 46px;
        padding: 12px 32px;
        font-family: 'Century Gothic', Arial, Helvetica, sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: .04rem;
        text-transform: uppercase;
    }

label {
    display: block;
    color: #5f6188;
    color: oklch(0.5067 0.0618 281.68);
    font-size: 1rem;
}

input,
select {
    height: 46px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 1rem;
    background: #fff;
    border: solid 1px rgba(95, 97, 136, 0.5);
    border-radius: 4px;
    outline: none;
}

    input[type="checkbox"] {
        height: auto;
    }

.heading-two {
    font-size: 1.65rem;
    font-weight: normal;
}

h1 {
    font-family: 'Century Gothic', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: bold;
}

.form-container {
    display: flex;
    width: auto;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-content: center;
    align-items: center;
}

#rememberMe label {
    display: inline-block;
}

.messaging div {
    margin-top: 14px;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
}

    .messaging div::before {
        display: inline-block;
        margin-right: 12px;
        font-family: "Font Awesome 7 Free";
        font-size: 20px;
        font-weight: 900;
        vertical-align: middle;
    }

.messaging .error::before,
.messaging .messagepriority4::before {
    content: '\f06a';
}

.messaging .warning::before,
.messaging .messagepriority3::before {
    content: '\f071';
}

.messaging .notification::before,
.messaging .messagepriority2::before,
.messaging .messagepriority1::before {
    content: '\f05a';
}

.error,
.messagepriority4 {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.05);
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.warning,
.messagepriority3 {
    color: #de7204;
    background: rgba(255, 130, 0, 0.175);
}

.notification,
.messagepriority2,
.messagepriority1 {
    color: #102f73;
    background: rgba(107, 173, 245, 0.2);
}

.perk {
    margin-top: 28px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 20px;
    font-size: .9rem;
    color: oklch(0.5067 0.0618 281.68);
}

    .perk h3 {
        display: block;
        margin-bottom: 4px;
        color: #333;
        font-family: 'Century Gothic', Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 1rem;
    }

    .perk .graphic {
        width: 50px;
        flex-shrink: 0;
    }

header {
    width: 100%;
    box-shadow: 2px 0 4px 0 rgba(0,0,0,0.2);
    padding: 8px 24px;
    z-index: 10;
    background-color: #f1f3f9;
    text-align: center;
    box-sizing: border-box;
}

    header > img {
        max-width: 160px;
    }

footer {
    display: block;
    width: 100%;
    padding: 12px;
    color: white;
    text-align: center;
    line-height: 3em;
    box-sizing: border-box;
}
