*{
    box-sizing: border-box;
}
body{
    font-family:sans-serif;
    font-weight: bold;
    background-image:linear-gradient(to bottom right,rgb(78, 252, 156),rgb(86, 255, 247));
    background-color:rgb(139, 255, 191);
}
.container{
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    background-color:hsl(200,100%,6%,.7);
    box-shadow: 0 0 15px 0 hsl(200,100%,6%,.7);
    padding:30px 30px;
    border-radius: 20px;
    width: 400px;
    display: flex;
    flex-direction: column;
    color: white;
}
.passhere{
    color:rgb(206, 241, 255);
    font-weight:200px;
    font-size:large;
    border:2px solid #000; 
    border-radius: 5px;
    padding:10px;
    width:100%;   
    text-align: center;
    margin-bottom:15px;
    background-color: hsl(200,100%,6%,.3);
}
.red{
    color:rgb(252, 165, 165);
    border:2px solid red;
}
.yellow{
    color:rgb(248, 248, 161);
    border:2px solid yellow;
}
.green{
    color:rgba(106, 218, 106, 0.979);
    border:2px solid rgb(23, 160, 23);
}
.darkgreen{
    color:rgb(189, 253, 189);
    border:2px solid rgb(0, 255, 0);
}
.nolen{
    width:40px;
}
button{
    background-color: rgba(0, 12, 19, 0.3);
    color: rgb(206, 241, 255);
    border:0px;
    border-radius: 10px;
    padding: 5px 0;
    width:100%;
    font-family:sans-serif;
    font-weight: bold;
    box-shadow: 0 0 5px 0 black;
}
button:active{
    transform: scale(0.98);
    box-shadow: 0 0 10px 0 black;
}

input{
    width:30px;
}
label{
    width:150px;
}
.lp{
    display:flex;
    justify-content: space-between;
}

@media only screen and (min-width:1440px){
    .box{
        transform: scale(1.5);
    }
}

@media only screen and (max-width:425px){
    .box{
        width:90%;
    }
    .passhere{
        text-align: center;
        padding:10px 0;
    }
}