*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nova Square', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(45deg, #0a0a0a, #3a4452);
}

.container{
    width: 600px;
    height: 400px;
    background: transparent;
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.9);
}

.inputs{
    display: flex;
    padding: 20px 0px;
}
.inputs label{
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    font-size: 20px;
}
.inputs input{
    height: 90px;
    width: 80px;
    margin: 0px 30px;
    border-radius: 5px;
    text-align: center;
    font-size: 35px;
    background: rgba(128, 128, 128, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
}
.inputs input::placeholder{
    color: rgba(255, 255, 255, 0.708);
}

.icons{
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons i{
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.471);
    cursor: pointer;
}


@media screen and (max-width:700px) {
    .container{
        width: 500px;
        height: 300px;
    }
    .inputs{
        padding: 10px 0px;
    }
    .inputs label{
        font-size: 15px;
    }
    .inputs input{
        height: 80px;
        width: 70px;
        margin: 0px 15px;
        font-size: 30px;
    }
    .icons i{
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.471);
        cursor: pointer;
        transform: scale(0.90);
    }
}

@media screen and (max-width:550px) {
    .container{
        width: 400px;
        height: 300px;
    }
    .inputs{
        padding: 8px 0px;
    }
    .inputs label{
        font-size: 14px;
    }
    .inputs input{
        height: 70px;
        width: 60px;
        margin: 0px 15px;
        font-size: 25px;
    }
    .icons i{
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.471);
        cursor: pointer;
        transform: scale(0.85);
    }
}

@media screen and (max-width:450px) {
    .container{
        width: 300px;
        height: 260px;
    }
    .inputs{
        padding: 5px 0px;
    }
    .inputs label{
        font-size: 12px;
    }
    .inputs input{
        height: 60px;
        width: 50px;
        margin: 0px 10px;
        font-size: 25px;
    }
    .icons i{
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.471);
        cursor: pointer;
        transform: scale(0.80);
    }
}

@media screen and (max-width:320px) {
    .container{
        width: 250px;
        height: 220px;
    }
    .inputs{
        padding: 0px 0px;
    }
    .inputs label{
        font-size: 11px;
    }
    .inputs input{
        height: 50px;
        width: 40px;
        margin: 0px 8px;
        font-size: 20px;
    }
    .icons i{
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.471);
        cursor: pointer;
        transform: scale(0.75);
    }
}
