@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
body {
  margin: 0;
  font-family: "Abril Fatface", serif;
  font-weight: 300;
  font-style: normal;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("/Assets/Registration_background_img.png");
}
.main {
  backdrop-filter: blur(6px);
  padding: 2.4rem;
  border-radius: 2rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
  width: 350px;
  text-align: center;
}
.formbox h2 {
  margin-bottom: 10px;
  color: black;
}
.formbox p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid grey;
  font-size: 14px;
  box-sizing: border-box;
  background-color: rgb(255, 209, 180);
  font-family: "Abril Fatface", serif;
}
input::placeholder{
  font-family: "Abril Fatface", serif;
}
form button {
  padding: 12px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  font-family: "Abril Fatface", serif;
}
.social {
  margin-top: 25px;
  font-family: "Abril Fatface", serif;
}
.social p {
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
}
.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

#result{
  font-family: "Abril Fatface", serif;
  font-size: 1rem;
  margin-top: 1rem;
}

@media screen and (max-width: 480px) {
  body{
    background-position: center;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
  }
  .main{
    margin-left: 2rem ;
    margin-right: 2rem;
    width: 90%;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px){
  body{
    background-position: center;
    height: 100vh;
    width: 100vw;
    overflow-x: auto;
  }
  .main {
    width: 60%;
    padding: 2rem;
  }

  .formbox h2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width:769px) {
  body{
    background-position: center;
  }
}