@font-face {
    font-family: roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: open-sans;
    src: url(../fonts/OpenSans-Regular.ttf);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#back-plate {
    position: absolute;
    top: 0%;
    width: 100%;
    height: 35vh;
    background-color: #2196F3;
    box-shadow: 0 1px 3px rgba(0,0,0,0.16), 0 1px 3px rgba(0,0,0,0.23);
    z-index: 0;
}

.wrapper{
    
    z-index: 1;
    padding: 50px;
    height: 500px;
    width: 600px;
    vertical-align: middle;
    background-color: white;
    border: 2px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    font-family: open-sans;
    
}

.wrapper form {
    height: 100%;
    width: 100%;
}

.wrapper .error_message {
    color: #F44336;
    width: 100%;
    text-align: center;
}

.wrapper img{
    padding: 20px 0 30px 0;
}

.wrapper .input-row{
    padding: 10px;
}

.wrapper span{
    padding-right: 40px;
}

.wrapper #submit-button {
    background-color: #2bbbad;
    color: white;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
    padding: 15px 60px;
    border: 0;
    margin-top: 30px;
    transition: 0.5s transform;
}

.wrapper #submit-button:hover {
    transform: scale(1.15);
}
.title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 15pt;
    font-family: calibri;
    text-decoration:underline;
    font-weight: bold;
}

input[type='text'], input[type='password'] {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    height: 30px;
    background-color: transparent;
    border-bottom: 2px rgb(55,55,55) solid;
}
