.align-self-end {
    align-self: end;
}

.forgot-password {
    text-align: end;
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    margin-top: -16px;
    z-index: 1000;
}

.custom-control-label {
    margin-left: 25px;
    color: #032478;
    padding-left: 10px;
    padding-top: 6px;
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    content: "";
    background: no-repeat 50% / 50% 50%;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23032478' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: white;
    border: 1px solid #ced4da;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
    outline: none;
    border: 1px solid #032478 !important;
}

.custom-control-input:hover ~ .custom-control-label::before {
    background-color: #F7F7F7;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
}

.change-email-wrapper {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 1000;
    margin-top: -16px;
    margin-bottom: 8px;
}