@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

.bg-img{
    background: url('../../img/plantilla/fondo.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.bg-img:after{
    box-sizing: border-box;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.bg-img .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 999;
    width: 370px;
    text-align: center;
    padding: 60px 32px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);
}

.bg-img .content header{
    color: white;
    font-size: 33px;
    font-weight: 600;
    margin: 0 0 35px 0;
    font-family: 'Poppins', sans-serif;
}

.bg-img .field{
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0.85);
}

.bg-img .field span{
    color: #222;
    width: 40px;
    line-height: 45px;
}

.bg-img .field input{
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #222;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.bg-img .show{
    position: absolute;
    right: 0px;
    color: #222;
    cursor: pointer;
    display: none;
}

.bg-img .password:valid ~ .show{
    display: block;
}

.bg-img .space{
    margin-top: 16px;
}

.bg-img input[type="submit"]{
    background: #3498db;
    border: 1px solid #2691d9;
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
}

.bg-img input[type="submit"]:hover{
    background: #2691d9;
}