*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' sans-serif;
    }
   
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background:url(https://images.pexels.com/photos/3052361/pexels-photo-3052361.jpeg) no-repeat;
        background-size: cover;
        background-position: center;
    }
    .titulo{
        margin-top: 20px;
        font-size: 2em;
        color: #fff;
        user-select: none;
    }
    .texto{
        display: grid;
        justify-content: center;
        align-items: center;
        margin-top: 130px;
        width: 50%;
        color: #fff;
        border-radius: 30px;
        border-style: solid;
        border-color: #fff;
        padding: 40px;
    }
    
.contenedor{
    position: relative;
    width: 400px;
    height: 400px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
   
}
form{
    font-size: 1.3em;
    color: #fff;
}
.lab{
    top: 10px;
}
.btn{
    color: #fff;
    background-color: rgb(22, 22, 100);
    margin-top: 10px;
    width: 350px;
}
