:root {
    --brandColor: hsl(166, 67%, 51%);
    --background: rgb(247, 247, 247);
    --textDark: hsla(0, 0%, 0%, 0.66);
    --textLight: rgb(247, 247, 247);
}

body,
html {
    background: var(--background);
    height: 100vh;
    color: var(--textLight);
    background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://unsplash.it/1920/1080?random') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

a {
    text-decoration: none;
    color: var(--brandColor);
}


/* visited link */

a:visited {
    color: var(--brandColor);
}


/* mouse over link */

a:hover {
    color: var(--brandColor);
}


/* selected link */

a:active {
    color: var(--brandColor);
}

b {
    color: var(--brandColor);
}

.field:not(:last-child) {
    margin-bottom: 1rem;
}

.register {
    margin-top: 10rem;
    background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    border-radius: 10px;
}

.left,
.right {
    padding: 4.5rem;
}

.left {
    border-right: 5px solid var(--background);
}

.left .title {
    font-weight: 800;
    color: var(--textLight);
    letter-spacing: -2px;
}

.left .colored {
    color: var(--brandColor);
    font-weight: 500;
    margin-top: 1rem !important;
    letter-spacing: -1px;
}

.left p {
    color: var(--textLight);
    font-size: 1.15rem;
}

.right .title {
    font-weight: 800;
    color: var(--textLight);
    letter-spacing: -1px;
}

.right .description {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
    color: var(--textLight);
    font-size: 1.15rem;
}

.right small {
    color: var(--textLight);
}

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;
}

.va {
    display: flex;
    align-items: center;
}

#bg_mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    margin-top: 0px;
    width: 90%;
    max-height: 200px;
    background: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
    z-index: 0;
    visibility: hidden;
}

#messageBox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: linear-gradient( rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
    visibility: hidden;
    z-index: 1;
}