* {
   margin: 0; 
   padding: 0;
   box-sizing: border-box;
   font-family: Helvetica, sans-serif;
   color: #323232;
   border: none; 
}

input, label {
    display: block;
    width: 100%;
}

input:focus, label:focus {
    outline: none;
}

a {
    color: #e60084;
}

body {
    padding-top: 5vh;
    background-image: url('../img/fundo_cad.jpg');
    background-size: cover;
    background-position-y: -150px;
}

#main-container {
    background-image: url('../img/logo_oficial.jpg');
    background-position: cover;
    background-position-x: center;
    background-position-y: 10px;
    background-size: 70%;
    background-repeat: no-repeat;
    
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
}

#main-container h1 {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 1.0rem;
}

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;
}

.spacing {
    margin-right: 2.5%;
}

label {
    font-weight: bold;
    font-size: .7rem;
}

input {
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: .9rem;
    margin-bottom: 40px;
}

input:focus {
    border-color: #9bac08;
}

input[type="submit"] {
    background-color: #4b10ee;
    color: #fff;
    border: none;
    border-radius: 20px;
    height: 40px;
    cursor: pointer;
}

#agreement {
    margin-right: 5px;
}

#agreement, #agreement-label {
    display: inline-block;
    width: auto;
}

.error-vaalidation {
    color: #ff1a1a;
    position: absolute;
    top: 57px;
    font-size: .8rem;
}

.template {
    display: none;
}

h2 {
    margin-top: 20px;
    color: #2f0b92;
    text-align: center;
    margin-bottom: 25px;
    font-size: .7rem;
}