@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto",sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* background-color: rgba(0, 0, 0, 0.26); */
    background-image: 
        /*linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.4)),*/
        url(../img/fondo.jpeg);
    background-size: cover;
    background-position: center;
    flex-wrap: wrap;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.142);
}
video{
    justify-content: center;
    align-items: center;
}
img{
    width: 100px;
    justify-content: center;
    align-items: center;
}
.wrapper{
    position: absolute;
}
.wrapper{
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(252, 252, 252, 0.685);
    color: #fff;
    border-radius: 15px;
    padding: 30px 40px;
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(250, 250, 250, 0.24);
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #fff;
}

.input-box i{
    position: relative;
    left: 92%;
    top: -70%;
    font-size: 20px;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}
.wrapper .register-title{
    font-size: 18.5px;
    text-align: center;
    margin: 20px 0 15px;
}

@media screen and (max-width: 640px) { /*movil*/
    .overlay{
        width: 100%;
        height: 109%;
        position: absolute;
        background: rgba(0, 0, 0, 0.1);
        /* Genera una capa de fondo */
    }
    img{
        width: 100px;
        justify-content: center;
        align-items: center;
    }
    .wrapper{
        position: absolute;
    }
    .wrapper{
        width: 320px;
        height: auto;
        background: transparent;
        /* border: 2px solid rgba(255, 255, 255, .5); */
        /* border: 2px solid #ac2dfe; */
        border: 2px solid #ffffff;
        backdrop-filter: blur(20px);
        /*box-shadow: 0 0 10px rgba(252, 252, 252, 0.685);*/
        /* box-shadow: 0 0 15px #ac2dfe; */
        box-shadow: 0 0 15px #ffffff;
        color: #fff;
        border-radius: 15px;
        padding: 30px 40px;
    }

    .wrapper h1{
        font-size: 36px;
        text-align: center;
    }

    .wrapper .input-box{
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .input-box input{
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border: 2px solid rgba(250, 250, 250, 0.24);
        border-radius: 40px;
        font-size: 16px;
        color: #fff;
        padding: 20px 45px 20px 20px;
    }

    .input-box input::placeholder{
        color: #fff;
    }

    .input-box i{
        position: relative;
        left: 82%;
        top: -70%;
        font-size: 20px;
    }

    .wrapper .btn{
        width: 100%;
        height: 45px;
        background: #29c5f9b4;
        border: none;
        outline: none;
        border-radius: 40px;
        box-shadow: 0 0 15px #29c4f9;
        cursor: pointer;
        font-size: 16px;
        color: #fff;
        font-weight: 600;
    }
    .wrapper .register-title{
        font-size: 18.5px;
        text-align: center;
        margin: 20px 0 15px;
    }
}
