body{
    background-image: url(../images/fondo_login.jpg);
    background-size: cover; /* Adaptar al tamaño */
    background-repeat: no-repeat; /* No se repita */
    background-position: center;
    background-attachment: fixed; /* Se adapta en el alto y el ancho */
}

main{
    width: 100%;
    padding: 20px;
    margin: auto; /* Se centra */
    margin-top: 50px;
}

/*Formularios*/

.contenedor__login-register{
    align-items: center;
    margin: auto;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.contenedor__login-register form{
    width: 100%;
    padding: 80px 20px;
    background: white;
    position: absolute; /* Para poder moverlo */
    border-radius: 20px;
}

.contenedor__login-register form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46A2FD;
}

.contenedor__login-register form input{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    background: #F2F2F2;
    font-size: 16px;
    outline: none;
}

.contenedor__login-register form h3{
    margin-top: 20px;
    color: #0b78e6;
}

.contenedor__login-register form p{
    margin-top: 20px;
    font-size: 20px;
}

.btn{
    padding: 10px 40px !important;
    margin-top: 40px !important;
    font-size: 14px !important;
    background: #46A2FD !important;
    font-weight: 600;
    cursor: pointer;
    color: white;
    width: 140px!important;
}

.contenedor__login-register form button{
    padding: 10px 40px;
    margin-top: 40px;
    font-size: 14px;
    background: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    color: white;
    width: 140px;
    border: solid 2px #46A2FD;
}

.contenedor__login-register form button a {
    color: #46A2FD;
    text-decoration: none;
}