* {
    box-sizing: border-box;
}

body{
	margin: 0;
    font-family:  sans-serif;
    
}

.formulario{
    
    width: 380px;
    max-width: 100%;
    margin: auto;
    margin-top: 25px;
    padding: 25px;
    box-shadow: 0 0 20px 1px;
    position: relative;
    border-radius: 10px;
    background-color: skyblue;
}

.titulo{
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    color:beige; 
    border: solid;
    border-radius: 10px;
    padding: 7px;
    background-color:darkblue;
}

.campos{
    
    margin-bottom: 10px;
    
}

.botones{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    
}

.boton{
    border: 2px solid blue ;
    border-radius: 6px;
    color: black;
    background-color: #e7e7e7; 
    padding: 7px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;    
    width: 314px;
    margin-bottom: 5px;
}


