* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100%;
  display: flex;
  background : blue;
  /*background: url(back1.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
}
#content_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#form_container {
  text-align: center;
  border: 2px solid black;
  width: 450px;
  background: transparent;
  border-radius: 7px;
  backdrop-filter: blur(10px);
}
#form_header {
  color: antiquewhite;
  margin-top: 20px;
  font-size: 30px;
}
#form_content_container {
  width: 100%;
  height: 100%;
  color: antiquewhite;
}
#form_content_inner_container {
  font-size: 20px;
}
input {
  width: 80%;
  padding: 15px;
  background-color: transparent;
  margin: 5px;
  border: none;
  outline: none;
  color: antiquewhite;
  border-bottom: 2px solid black;
}
input::placeholder {
  text-transform: capitalize;
  color: antiquewhite;
  transform: translateY(-16px);
  background: transparent;
  text-decoration: none;
  outline: none;
}
#button_container {
  width: 100%;
  height: 100%;
}
button {
  width: 80%;
  height: 55px;
  border-radius: 7px;
  border: none;
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  letter-spacing: 1px;
  &:hover {
    color: rgb(34, 3, 63);
    background-color: burlywood;
    cursor: pointer;
    letter-spacing: 4px;
  }
}
p {
  margin-bottom: 20px;
  text-transform: capitalize;
  margin-top: 10px;
}
a {
  text-decoration: none;
  color: antiquewhite;
  font-size: 1.7rem;
  &:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1140px)
{
 #form_container{
  width: 700px;
  
 }
}
