body{
    background-color: #111111;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #404040;
    margin: 0;
    padding: 0;
    min-width: 768px;
}

/* Shapes */

.circle1 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    left: 15%;
    top: 24%;
    z-index: 1;
}

.circle2 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    left: 12%;
    top: 57%;
    z-index: -1;
}

.circle3 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    left: 9%;
    bottom: 9%;
    z-index: -1;
}

.square1 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    right: 9%;
    top: 15%;
    z-index: -1;
}

.square2 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    right: 15%;
    top: 42%;
    z-index: -1;
}

.square3 {
    position: absolute;
    border: 1px solid #3f3d56;
    height: 24px;
    width: 24px;
    right: 6%;
    bottom: 21%;
    z-index: -1;
}

/*End Shapes*/

.wrapper{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-self: center;
    height: 100vh;
}
form{
    margin: 0 auto;
    width: 500px;
    padding: 40px;
    background-color: #ffffff;
    border: solid 1px #e5e6e8;
}
form .label{
    margin: 15px 0 10px;
}
form input, form textarea {
    padding: 10px 15px;
    border: solid 1px #e5e6e8;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #404040;
    width: 100%;
    box-sizing: border-box;
}
#alert{
    display: none;
    margin: 15px 0 0;
    color: #808080;
}
button{
    margin: 20px 0 0;
    padding: 10px 15px;
    background-color: #61c0bf;
    color: #ffffff;
    font-size: 0.8em;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
button:hover{
    cursor: pointer;
}
.google-message{
    margin: 15px 0 0;
    color: #808080;
    font-size: 0.8em;
}
.google-message a{
    color: #808080;
}
.grecaptcha-badge {
    visibility: hidden;
}