.flex {
    display: flex;
}

.vertical {
    flex-direction: column;
}

.gap-32 {
    gap: 32px;
}

body {
    width: 100%;
    height: 100%;
    position: relative;
    background: url("/static/users/images/login_pages/circles-bg.png") no-repeat, linear-gradient(130deg, #1D528F 0%, #072549 100%) ;
}

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
.container {
    min-width: 25%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: 12px;
    padding: 1rem 0 2rem;
}
.logo {
    height: auto;
    width: 230px;
}
h1 {
    color: #424242;
    font-size: 28px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    margin: 0 0 .6rem;
    text-align: center;
}

h2 {
    position: relative;
    color: white;
    font-size: 48px;
    font-family: League Spartan;
    font-weight: 500;
    word-wrap: break-word;
    margin: 24px 0 0;
}

.sub-head {
    color: white;
    font-size: 20px;
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 20%;
    padding: 2rem 0;
    border-radius: 12px;
    background-color: white;
    align-items: center;
    justify-content: start;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 .5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: "Open Sans", sans-serif;
}

.alert > ul {
    list-style: none;
    padding-inline-start: 0px;
    margin-block: 0;
    width: 16rem;
}

.alert > ul li{
    color: #ffffff;
    background-color: rgb(179 0 0 / 80%);
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

label {
    font-size: 14px;
    color: #424242;
}

input {
    border: 1px solid #d9d9d9;
    padding-left: 8px;
    width: 250px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
}

.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkbox label {
    font-size: 12px;
    color: #424242;
}
input[type=checkbox] {
    height: 15px;
    width: 15px;
    margin: 0;
    font-size: 12px;
}

button, .button {
    display: flex;
    padding: 12px;
    background: #277FD1;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    border-width: 0;
    cursor: pointer;
    transition: background-color .3s;
}

button:hover, .button:hover {
    background: #0e4b83;
}

.flex.center.gap-4 {
    display: flex;
    gap: 4px;
}

button.cancel {
    background-color: transparent;
    color: black;
    margin-top: 1rem;
}
button.cancel:hover {
    text-decoration: underline;
}

.help-block > ul {
    padding-inline-start: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #424242;
    font-size: 14px;
    width: 14rem;
}

a.cancel {
    text-align: center;
    color: #424242;
    text-decoration: none;
}

a.cancel:hover {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {

    section {
        flex-direction: row;
        justify-content: space-around;
    }
    form {
        padding: 0 1.4rem;
    }

}