body{
    background: url(images/chess.jpg) ;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;

}
.container{
    width: 300px;
    height: /*450px*/auto;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow:0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(0.3px) ;
   -webkit-backdrop-filter: blur(0.3px); 
   border-radius: 10px;
   border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 80px auto;
    
}
img{
    width: 100px;
    position: relative;
    top: -40px;
    left: 33%;
}
h2{
  /*  text-align: center;
    text-transform: uppercase;
    color: white;*/
    margin-top: -10px;
  /*  font-family: 'Cinzel Decorative', cursive;*/
    color: white;
    word-wrap: break-word;
   font-size: 85%;
   align-self: center;
   align-content: center;
   justify-content: center;
   text-align: center;
   font-weight: normal; 
}
form{
    margin: 30px;
}
label{
    display: block;
    color: white;
    margin-top: 10px;
}
input{
    display: block;
    width: 90%;
    background: transparent;
    border:none;
    outline: none;
    border-bottom: 1px solid white;
    padding:10px ;
    color: white;
}
::placeholder{
    color: white;
    opacity: 0.7;
}

input[type=submit]{
    width: 90%;
    margin-top:10px ;
    padding: 8px;
    border: none;
    outline: none;
   /* background: blueviolet;*/
   background-color: rgb(36, 45, 120);
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 5px;
    margin-top: 10px;
    transition-duration: 0.5s;
}
input[type=submit]:hover{
    width: 90%;
    margin-top:10px ;
    padding: 8px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom:1px solid white ;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 0px;
    margin-top: 10px;
    transition-duration: 0.5s;
}
.icon-container{
    align-content: center;
    margin-top: 20%;
display: flex;
flex-direction: row;
flex-wrap: wrap;}
.icon-container img{
    margin: 2px;
}