@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
    width: 100vw;
    height: 100vh;
    background-color: #09769c;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 50%;
    margin: 40px auto;
}

.título {
    display: block;
    text-align: center;
    padding: 10px;
    width: 50%;
    border-radius: 10px 10px 0 0;
    background-color: #f3e700;
    color: rgb(0, 0, 63);
    font-weight: bold;
}

.formulario {
    z-index: 2;
    display: flex;
    align-items: center;
}

.formulario form {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgb(0, 0, 63);
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.formulario form input {
    border-radius: 10px;
    padding: 10px;
    border: none;
    outline: none;
}

#ultimo-input {
    margin-top: 10px;
}

#checkbox {
    border-radius: 30px;
    background-color: blue;
}

.formulario form h3 {
    margin-top: 20px;
    font-size: 15px;
    font-weight: lighter;
    border: 1px solid white;
    padding: 10px;
    border-radius: 0 20px 20px 0;
}

.formulario form button {
    margin-top: 20px;
    border-radius: 20px;
    background-color: #f3e700;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgb(0, 0, 63);
    padding: 10px;
}

.formulario form div {
    font-size: 12px;
}

.formulario form span {
    margin-top: 20px;
}

#country {
    display: none;
}

#country input {
    margin-top: 10px;
}

#teste {
    display: none;
}

#teste input {
    margin-top: 10px;
}

@media (max-width: 750px) {
    .container {
        width: 90%;
    }
}

#raca {
	padding: 10px;
	border-radius: 10px;
}
