* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
}

.formulario {
    width: 600px;
    height: 800px;
    margin: 10px auto;
    background-color: #E6E6FA;
    border-radius: 20px;
    border: 2px solid #dadaec;
}

.titulo {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.linha {
    width: 500px;
    height: 1px;
    background-color: black;
}

.nome {
    font-size: 16px;
    padding-left: 45px;
    padding-top: 30px;
    font-weight: bold;
}

p {
    font-size: 16px;
    padding-left: 45px;
    font-weight: bold;
}


.asterisco {
    color: red;
    font-weight: bold;
}

.campo1 {
    margin-top: 12px;
    margin-left: 3px;
    margin-bottom: 20px;
    width: 500px;
    height: 30px;
    border-radius: 6px;
    border: 2px white solid;
}

.botao {
    width: 200px;
    background: #0b42af;
    border-radius: 6px;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bolder;
    margin-left: 45px;
}

.botao:hover {
    background-color: #083181;
}