@charset "UTF-8";
/* Geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #323232;
    border: none;
} 
input,label{
    display: block;
    width: 100%;
}
input:focus, label:focus{
    outline: none;
}
a{
    color: #e60085;
}
body{
    padding-top: 5vh;
    background-image: url("../img/backgroud.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100vw; 
    background-attachment: fixed;  
}
/* form */
#conteiner{
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
}
#conteiner h1{
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
}
form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.full-box{
    flex: 1 1 100%;
    position: relative;
}
.half-box{
    flex: 1 1 45%;
    position: relative;
}
.space{
    margin-right: 2.5%;
}
label{
    font-weight: bolder;
    font-size: .8rem;
}
input{
    border-bottom: 2px solid black;
    padding: 10px;
    font-size: .9rem;
    margin-bottom: 40px;
}
input:focus{
    border-color: #e60085;
}
input[type="submit"]{
    background-color: #e60085;
    color: white;
    border: none;
    border-radius: 20px;
    height: 40px;
    cursor: pointer;
}
#agreement{
    margin-right: 5px;
}
#agreement,#agreement-label{
    display: inline-block;
    width: auto;
}
/* Error */
.error{
    color: red;
    position: absolute;
    top: 57px;
    font-size: .8rem;
}

.template{
    display: none;
}
