@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype')/* Safari, Android, iOS */
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    margin: 50px auto;
    text-align: center;
    width: 800px;
}
h1 {
    font-family: 'Roboto';
    font-size: 2rem;
    text-transform: uppercase;
}
label {
    width: 150px;
    display: inline-block;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Roboto';
}
#video_background {
position: absolute;
bottom: 0px;
right: 0px;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1000;
overflow: hidden;
}
#video_pattern {
background:#fff;
position: fixed;
opacity: 0.8;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 1;
}
input {
    border: 2px solid #ccc;
    font-size: 1.5rem;
    font-weight: 100;
    font-family: 'Roboto';
    padding: 10px;
    border-radius: 10px;
}
form {
    margin: 25px auto;
    padding: 20px;
    border: 5px solid #ccc;
    width: 500px;
    background: #eee;
    border-radius: 10px;
}
div.form-element {
    margin: 20px 0;
}
button {
    padding: 10px;
    font-size: 1rem;
    font-family: 'Roboto';
    font-weight: 100;
    background: rgb(143, 0, 0);
    color: white;
    border: none;
    border-radius: 10px;
}
p.success,
p.error {
    color: white;
    font-family: 'Roboto';
    background: yellowgreen;
    display: inline-block;
    padding: 2px 10px;
}
p.error {
    background: rgb(121, 32, 0);
    border-radius: 10px;
    padding: 10px;
}

.form-element{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
}

label{
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bolder;
}