@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

h3{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
body{
  background-color: #17519c;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.main_div{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.child_div{
  background: rgba( 230, 253, 230, 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 );
  width: 30%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.child_div label{
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.child_div input[type="text"],.child_div input[type="password"]{
  display: block;
  font-family: 'Poppins', sans-serif;
  height: 40px;
  width: 300px;
  border-radius: 10px;
  border: 2px solid #fff;
  outline: none;
  padding: 0 10px;
  background: transparent;
  color: #fff;
}
.child_div input[type="text"]:focus, .child_div input[type="password"]:focus{
  outline: none;
  box-shadow: none;
  background: transparent;
  color: #fff;
}
.child_div input[type="text"]::placeholder, .child_div input[type="password"]::placeholder{
  font-family: 'Poppins', sans-serif;
  background: transparent;
  color: #fff;
}

button{ display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  height: 40px;
  padding: 10px 45px;
  border-radius: 50px;
  background-image: linear-gradient(180deg,#17519c,#000);
  box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
  transition: all .2s ease-out;
}
button:hover{
  box-shadow: 0 8px 22px 0 rgb(23, 81, 156, 0.8), 0 4px 6px 0 rgb(23, 81, 156, 0.5);
}

@media only screen and (max-width: 600px) {
  .child_div{
    background: rgba( 230, 253, 230, 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 );
    width: 90%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}