/* Frontpage of 'beheer' */
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fbfbfb;
    font-family: 'Overpass', sans-serif;
    text-rendering: optimizeLegibility;
}


.body-wrapper {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo img{
    max-width:200px;
}

h2 {
    font-weight: 700;
    font-size: 30px;
}

h3 {
    font-weight: 500;
    font-size: 20px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0,0,0,.6);
}

label{
    font-size: 16px;
    display: block;
    padding-bottom: 5px;
    font-weight: 700;
    margin-top: 32px;
}


input,.email {
    display: block;
    border: 0;
    height: 50px;
    width:90%;
    padding: 5px 30px 5px 10px;
    font-size: 24px;
    font-size: 18px;
    text-align: center;
    line-height: 16px;
    margin: 4px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1), 0 1px 3px 0 rgba(0,0,0,.1);
    color: #000;
    transition: box-shadow .1s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button{
    margin-top: 20px;
    margin-left:5px;
    display: block;
    padding: 0 16px;
    border: 0;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.19);
    border-radius: 6px;
    background-color: #07f;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    transition: box-shadow .3s;
    width: 100%;
    cursor: pointer;
}

button:hover{
    background-color: rgb(60, 150, 253);
}