html {
    box-sizing: border-box;
    font-family: 'Calibri, sans-serif';
    font-size: 18px;
}
html {
    width: 100%;
    height: 100%;
  }

html body {
    width: 100%;
    height: 100%;
}

.bg {
    /* The image used */
    background-image: url("../img/back.jpg");

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

label {
    display: block;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

input {
    font-family: 'Calibri, sans-serif';
    font-size: 18px;
}

.register-container,
.info-container {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form,
.info-box {
    background-color: rgba(0, 0, 0, 0.8);

    color: white;
    padding: 1.5rem 1.5rem;
    border-radius: 0.8rem;
}

.btm-pad {
    margin-bottom: 1rem;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
}