@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

html {
    box-sizing: border-box;
    height: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

button > span,
button > h1 {
  pointer-events: none;
}

.base-button {
    align-items: center;
    background-color: #0fc3da;
    border: 0;
    border-radius: 0.3rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1.3rem;
    font-weight: 700;
    height: 3.9rem;
    margin-top: 1rem;
    padding: 0 1.8rem;
    text-decoration: none;
}

.base-button:disabled {
    cursor: not-allowed;
    background-color: #a2a2a2;
}

.base-button-light {
    align-self: center;
    appearance: none;
    background-color: #fff;
    border: 1px solid #0fc3da;
    border-radius: 5px;
    color: #0fc3da;
    cursor: pointer;
    flex: none;
    font-size: 1.3rem;
    font-weight: 700;
    height: 3.9rem;
    margin-top: 1rem;
    outline: none;
    padding: 0 1.8rem;
    position: relative;
    text-align: center;
    user-select: none;
}

.base-button-destructive {
    align-self: center;
    appearance: none;
    background-color: #da0f22;
    border: 0;
    border-radius: 0.3rem;
    color: #fff;
    cursor: pointer;
    flex: none;
    font-size: 1.3rem;
    font-weight: 700;
    height: 3.9rem;
    margin-top: 1rem;
    outline: none;
    padding: 0 1.8rem;
    position: relative;
    text-align: center;
    user-select: none;
}

.base-checkbox {
    align-items: center;
    display: inline-flex;
    height: 1.7rem;
    width: 1.7rem;
}

.base-checkbox input {
    display: none;
}

.base-checkbox-checkmark svg {
    background-color: #ebedf5;
    border-radius: 0.3rem;
    cursor: pointer;
    fill: transparent;
    height: 1.7rem;
    padding: 0.35rem;
    width: 1.7rem;
}

.base-checkbox input:checked + .base-checkbox-checkmark svg {
    background-color: #0fc3da;
    fill: #fff;
}

.base-email-address {
    color: #0ecadf;
    text-decoration: underline;
}

.base-form {
    display: flex;
    flex-direction: column;
}

.base-form-error {
    color: red;
    font-size: 0.875rem;
    font-weight: 400;
    padding-top: 1rem;
}

.base-heading {
    align-self: flex-end;
    color: #003770;
    font-size: 1.875rem;
    font-weight: bold;
}

.base-invisible-link {
    text-decoration: none;
}

.base-link {
    color: #0fc3da;
    text-decoration: underline;
}

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

.base-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.base-checkmark {
    height: 1.4rem;
    width: 1.4rem;
    background-color: #ebedf5;
    border-radius: 0.3rem;
    cursor: pointer;
    fill: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
}

.base-checkbox-container input:checked ~ .base-checkmark {
    background-color: #0fc3da;
    fill: #fff;
}

.base-checkbox-container input:checked ~ .base-checkbox-container {
    opacity: 1;
}

.base-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.base-checkbox-container input:checked ~ .base-checkmark:after {
    display: block;
}

.base-checkbox-container svg {
    height: 0.76rem;
}

.base-checkbox-label {
    margin-left: 0.5rem;
    color: #0fc3da;
    font-size: 1rem;
}

.base-input {
    border: 1px solid #e4e4e4;
    border-radius: 0.3rem;
    display: block;
    font-size: 1.1rem;
    height: 3.2rem;
    margin-top: 0.625rem;
    outline: none;
    padding: 1rem;
    width: 100%;
}

.base-label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.small-bottom-spacing {
    margin-bottom: 0.35rem;
}

.password-strength-range {
    position: relative;
    display: inline-block;
    width: 11.25rem;
    height: 1rem;
    background-color: rgba(240, 242, 244, 0.7);
}

.password-strength-step {
    position: absolute;
    display: inline-block;
    width: 25%;
    height: 100%;
    border-right: 1px solid #172635;
}

.password-strength-step-valid {
    background: rgba(9, 197, 59, 1);
}

.password-strength-step-1 {
    left: 0;
}

.password-strength-step-2 {
    left: 25%;
}

.password-strength-step-3 {
    left: 50%;
}

.password-strength-step-4 {
    left: 75%;
}

.password-strength-container,
.password-strength-container-hidden {
    margin-bottom: 1.2rem;
}

.password-strength-container-hidden * {
    display: none;
}

.password-strength-range-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.password-strength-range-container > *:not(:last-child) {
    margin-right: 0.5rem;
}

.base-top-wrapper {
    display: flex;
    justify-content: space-between;
}

.base-wide-button {
    align-items: center;
    appearance: none;
    background-color: #0fc3da;
    border: 0;
    border-radius: 0.3rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex: none;
    font-size: 1.3rem;
    font-weight: 700;
    height: 3.9rem;
    justify-content: center;
    margin-top: 1rem;
    outline: none;
    padding: 0 1.8rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    width: 100%;
}

.base-wide-button:disabled {
    background-color: #a2a2a2;
    cursor: not-allowed;
}

p + .base-wide-button {
    margin-top: 1.375rem;
}