@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
}

#window{
    background: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}


.container{
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    margin: 0% 15%;
    position: relative;
    top: 5%;
    height: 600px;
}

#title{
    color: white;
    font-size: x-large;
    text-align: center;
    letter-spacing: 2px;
}

#intitle{
    color: white;
    letter-spacing: 2px;
    font-weight: 300;
    border-bottom: 1px solid white;
    width: 100%;
    margin-bottom: 2%;
}


#dev{
    color: white;
    font-size: small;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5%;
}


.box,.outputbox{
    margin: 2% 10% 0% 10%;
    padding: 10px 10px 0px 10px;
}


.error{
    margin: 0% 10% 0% 10%;
    padding: 5px 10px 10px 10px;
    color: red;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bolder;
}

#inputbox{
    outline: none;
    height: 30px;
    width: 80%;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    letter-spacing: 0.5px;
}

#inputbox::placeholder{
    font-size: large;
    color: white;
}


#submitbtn{
    border: 2px solid white;
    background: transparent;
    width: 80px;
    height: 30px;
    border-radius: 10px;
    color: white;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
}

.btn{
    border: 2px solid white;
    background: transparent;
    width: 80px;
    height: 30px;
    border-radius: 10px;
    color: white;
    outline: none;
    cursor: pointer;
    margin-left: 5px;
    display: inline;
}
.btn:hover{
    background: white;
    color: blue;
}

#submitbtn:hover{
    background: white;
    color: blue;
}

.closebtn {
    padding-left: 5px;
    color: white;
    float: right;
    cursor: pointer;
    
}
.checkbtn {
    padding-left: 5px;
    color: white;
    float: right;
    cursor: pointer;
}

.list{
    color: white;
    letter-spacing: 1px;
    font-weight: 200;
    padding: 5px 0px;
    font-size: 14px;
    border-bottom: 1px solid white;
    font-weight: large;
}

@media only screen and (max-width: 600px){
    #inputbox{
        margin-top: 2%;
        width: 60%;
    }

    #inputbox::placeholder{
        font-size: small;
    }

    #submitbtn{
      width: 50px;
    }

    .error{
        font-size: 10px;
        font-weight: 600;
    }

    .container{
        height: 500px;
    }
}