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

* {margin: 0; padding: 0; box-sizing: border-box;}

body {
    font-family: Poppins;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("game21.png");
    background-size: cover;
}
body::before {
    content: "";
    position: absolute; z-index: 1;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0,0,0,.7, green, blue, alpha);
}

.form {
    position: relative;
    z-index: 2;
    padding: 50px;
    backdrop-filter: blur(3px);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    border-color: #fff;
    border-width: 5px;
    border-radius: 25px;
    border-style: solid;
}
.form h1 {
    font-size: 36px; 
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.int-area {
  width: 500px; 
  height: 70px;
  position:relative;
  margin-top: 20px;
}
.int-area input {
    width: 100%;
    padding: 20px 10px 10px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    font-size: 18px; color: #fff;
    outline:none;
    
}
.int-area label {
  position: absolute;
  top: 50%;
  left: 5px;
  font-size: 18px; color: #fff;
}
.int-area:first-child { margin-top: 0; }
.int-area input:focus + label,
.int-area input:valid + label {
  top: -10px;
  font-size: 15px; color: pink
}

.btn-area {margin-top: 30px;}
.btn-area button {
    width: 100%; height: 50px;
    background: #fff;
    color: silver;
    font-size: 20px;
    border: none;
    border-radius: 25px;
}
.btn-area button:hover {
    cursor: pointer;
    background-color: lightskyblue;
    transition: .5s;
}
.caption {

  margin-top: 20px;
  text-align: center;
  
}
.caption a {
  font-size: 15px; color: #999;
  text-decoration: none;
}
.btn-area button{
    background-color: #00FFFF;
    font-family: Poppins;
    font-weight: 500;
}

.link{
    margin-top: 35px;
    text-align: center;
    font-size: 16px;
    color: white;
}  

.link a{
    color: #2691d9;
    text-decoration: none;
}

.link a:hover{
    text-decoration: underline;
}
