:root {
    --brandColor: rgb(48, 71, 110);
    --background: rgb(247, 247, 247);
    --textDark: hsla(0, 0%, 0%, 0.66);
    --textLight: hsla(0, 0%, 0%, 0.33);
}

body {
    background: var(--background);
    height: 100vh;
    color: var(--textDark);
}

.is-orange {
    color: #ffa300;
    border-color: #ffa300;
}

.field:not(:last-child) {
    margin-bottom: 1rem;
}

.register {
    margin-top: 10vh;
    background: white;
    border-radius: 10px;
}

.left,
.right {
    padding: 4.5rem;
}

.left {
    border-right: 5px solid var(--background);
}

.left .title {
    font-weight: 800;
    letter-spacing: -2px;
}

.left .colored {
    color: var(--brandColor);
    font-weight: 500;
    margin-top: 1rem !important;
    letter-spacing: -1px;
}

.left p {
    color: var(--textDark);
    font-size: 1.15rem;
}

.left .powered {
    margin-top: 1rem;
    color: var(--textDark);
    font-size: 1rem;
}

.right .title {
    font-weight: 800;
    letter-spacing: -1px;
}

.right .description {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
    color: var(--textDark);
    font-size: 1.15rem;
}

.right small {
    color: var(--textLight);
}

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
}

input {
    font-size: 1rem;
}

input:focus {
    border-color: var(--brandColor) !important;
    box-shadow: 0 0 0 1px var(--brandColor) !important;
}

.fab,
.fas {
    color: var(--textLight);
    margin-right: 1rem;
}

.error-fullscreen {
    margin-top: 15%;
}


.va {
    display: flex;
    align-items: center;
}

a {
    color: var(--brandColor);
}

.button.spaced {
    margin-top: 1.5rem;
}



.button.is-colored {
    background-color: var(--brandColor);
    border-color: transparent;
    color: #fff
}

.button.is-colored.is-hovered, .button.is-colored:hover {
    background-color: var(--brandColor);
    border-color: transparent;
    color: #fff
}

.button.is-colored.is-focused, .button.is-colored:focus {
    border-color: transparent;
    color: #fff
}

.button.is-colored.is-focused:not(:active), .button.is-colored:focus:not(:active) {
    box-shadow: 0 0 0 .125em rgba(50, 115, 220, .25)
}

.button.is-colored.is-active, .button.is-colored:active {
    background-color: var(--brandColor);
    border-color: transparent;
    color: #fff
}

.button.is-colored[disabled], fieldset[disabled] .button.is-colored {
    background-color: var(--brandColor);
    border-color: transparent;
    box-shadow: none
}

.button.is-colored.is-inverted {
    background-color: #fff;
    color: var(--brandColor)
}

.button.is-colored.is-inverted.is-hovered, .button.is-colored.is-inverted:hover {
    background-color: var(--brandColor)
}

.button.is-colored.is-inverted[disabled], fieldset[disabled] .button.is-colored.is-inverted {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: var(--brandColor)
}

.button.is-colored.is-loading::after {
    border-color: transparent transparent #fff #fff !important
}

.button.is-colored.is-outlined {
    background-color: transparent;
    border-color: var(--brandColor);
    color: var(--brandColor)
}

.button.is-colored.is-outlined.is-focused, .button.is-colored.is-outlined.is-hovered, .button.is-colored.is-outlined:focus, .button.is-colored.is-outlined:hover {
    background-color: var(--brandColor);
    border-color: var(--brandColor);
    color: #fff
}

.button.is-colored.is-outlined.is-loading::after {
    border-color: transparent transparent var(--brandColor) var(--brandColor) !important
}

.button.is-colored.is-outlined.is-loading.is-focused::after, .button.is-colored.is-outlined.is-loading.is-hovered::after, .button.is-colored.is-outlined.is-loading:focus::after, .button.is-colored.is-outlined.is-loading:hover::after {
    border-color: transparent transparent #fff #fff !important
}

.button.is-colored.is-outlined[disabled], fieldset[disabled] .button.is-colored.is-outlined {
    background-color: transparent;
    border-color: var(--brandColor);
    box-shadow: none;
    color: var(--brandColor)
}

.button.is-colored.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.button.is-colored.is-inverted.is-outlined.is-focused, .button.is-colored.is-inverted.is-outlined.is-hovered, .button.is-colored.is-inverted.is-outlined:focus, .button.is-colored.is-inverted.is-outlined:hover {
    background-color: #fff;
    color: var(--brandColor)
}

.button.is-colored.is-inverted.is-outlined.is-loading.is-focused::after, .button.is-colored.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-colored.is-inverted.is-outlined.is-loading:focus::after, .button.is-colored.is-inverted.is-outlined.is-loading:hover::after {
    border-color: transparent transparent var(--brandColor) var(--brandColor) !important
}

.button.is-colored.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-colored.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff
}

.button.is-colored.is-light {
    background-color: var(--brandColor);
    color: var(--brandColor)
}

.button.is-colored.is-light.is-hovered, .button.is-colored.is-light:hover {
    background-color: var(--brandColor);
    border-color: transparent;
    color: var(--brandColor)
}

.button.is-colored.is-light.is-active, .button.is-colored.is-light:active {
    background-color: var(--brandColor);
    border-color: transparent;
    color: var(--brandColor)
}