*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;

}

body{
    background-image: url(../../images/img_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

main__login{
        width: 100%;
        padding: 20px;
        margin: auto;
        margin-top: 100px;
}

.contenedor__todo{
    width: 100%;
    padding: 200px;
    max-width: 800px;
    margin: auto;
    position: relative;
}

.caja__login{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 128, 255, 0.5);
    border-radius: 20px;

    align-items: center;
    max-width: 380px;
    position: relative;
}

.caja__login div{
    margin: 10px 40px;
    color: white;
    transition: all 500ms;
}

.caja__login div p,
.caja__login div button{
    margin-top: 30px;
}

.caja__login div h1{
        font-weight: 800;
        font-size: 50px;
}

.caja__login div h3{
    font-weight: 400;
    font-size: 26px;
}

.caja__login button{
    padding: 10px 40px;
    border: 2px solid #fff;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    outline: none;
    transition: all 300ms;
    border-radius: 20px;
}

.caja__login button:hover{
    background: #fff;
    color: #46A2FD;
}

.caja__login form h1{
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.caja__login form h3{
    font-size: 15px;
    text-align: center;
    margin-bottom: -10px;
    color: white;
}

.caja__login form input{
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border: none;
    background: #F2F2F2;
    font-size: 16px;
    outline: none;
}

.caja__login form button{
    padding: 10px 40px;
    margin-top: 20px;
    border: none;
    font-size: 16px;
    background: #46A2FD;
    color: white;
    cursor: pointer;
    outline: none;
    align-items: center;
}

.caja__login form a{

    font-size: 14px;
    color: rgb(72, 4, 160);
    cursor: pointer;
    display: flex ; 
    justify-content: right;
    text-decoration: underline;
}