*{
    margin:0px;
    padding: 0px;
}
body{
    background-color: #0a1930;
}
.Contenedor{
    background-color:#172b46;
    margin: auto;
    margin-top: 50px;
    width: 470px;
    height: 525px;
    box-shadow:2px 2px 20px 1px #000;
}
.title1{
    position: relative;
    text-align: center;
    width:250px;
    height: 50px;
    margin: auto;
}
.title1 p{
    position: absolute;
    color:#fff;
    font-size: 23px;
    font-family: Arial;
    font-weight: bold;
    margin:15px 10px 0px 10px;
}
#Formulario{
    margin: 20px;

}
.Campos{
    margin: 0px 40px 10px 40px;
    height: 150px;
}
.Campos label{
    color: #fff;
    font-family: Arial;
    margin-left: 10px;
    font-size: 14px;
    display: flex;
    font-weight: bold;
    margin: 10px 0px 3px 0px;
}
.Campos input{
    padding-left: 10px;
    padding-bottom: 2px;
    width: 340px;
    background-color: transparent;
    outline: none;
    height: 20px;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
}
.Check{
    margin: 0px 40px 0px 40px;
}
#Titulo2{
    color: #fff;
    font-family: Arial;
    margin-left: 10px;
    font-weight: bold;
    margin: 10px 0px 5px 0px;
}
.Check label{
    font-family: Arial;
    font-size: 14px;
    color: #fff;
}
.Check input{
 margin-left: 10px;
 margin-top: 5px;
}
.Radio{
    margin: 5px 40px 0px 40px;
}
#Titulo3{
    color: #fff;
    font-family: Arial;
    margin-left: 10px;
    font-weight: bold;
    margin: 10px 0px 5px 0px;
}
.Radio input{
    margin-left: 10px;
    margin-top: 5px;
}
.Radio label{
    color: #fff;
    font-family: Arial;
    font-size: 14px;
}
#Boton{
    color: #0a1930;
    width: 350px;
    height: 40px;
    border-radius: 2px;
    border: none;
    background-color: #fff;
    margin: 15px 40px 0px 40px;
    transition: all 0.7s;
}
#Boton:hover{
    background-color: #2AB652;
    color: #fff;
}
.Cambios{
    margin: 40px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
}
#Anterior{
    text-decoration: none;
    background-color: #fff;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    border-radius: 2px;
    padding: 8px 8px 8px 8px;
    transition: all 0.7s;
}
#Siguiente{
    left: 300px;
    text-decoration: none;
    background-color: #fff;
    color: #172b46;
    font-size: 14px;
    font-family: Arial;
    cursor: pointer;
    border-radius: 2px;
    padding: 8px 8px 8px 8px;
    transition: all 0.7s;
}
#Anterior:hover{
    color: #fff;
    background-color: #2AB652;
}
#Siguiente:hover{
    color: #fff;
    background-color: #2AB652;
}