input {
  padding: 12px 20px;
  font-size: 24px;
  border: 2px solid #419aff;
  background-color: #ffeeff;
  color: #000;
  /* White text */
  border-radius: 5px;
  background-image: url("assets/snowflakebg.png");
  /* Snowflake pattern */
  background-size: 100px;
  /* Adjust the size of the snowflake pattern */
  filter: hue-rotate(260deg);
  background-repeat: repeat;
  z-index: 10;
  width: 100%;
  margin-bottom: 20px;
}

.submit {
  padding: 12px 20px;
  font-size: 24px;
  border: 2px solid #419aff;
  background-color: #419aff;
  color: #000;
  /* White text */
  font-weight: 700;
  border-radius: 5px;
  background-image: url("assets/snowflakebg.png");
  /* Snowflake pattern */
  background-size: 100px;
  /* Adjust the size of the snowflake pattern */
  background-repeat: repeat;
  filter: hue-rotate(260deg);
  cursor: pointer;
  z-index: 10;
  width: 100%;
  margin-bottom: 20px;
  transition: all .25s ease-out;
}

input::placeholder {
  color: #000;
  /* White placeholder text */
  opacity: 0.8;
}

body {
  background-color: #fff;
  background-image: url("/assets/bg.webp?v=2024");
  background-size: cover;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  min-height: 100vh;
  margin: 0;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  body {
    background-image: url("/assets/bg-mob.webp?v=2024");
  }

  input,
  .submit {
    font-size: 18px;
    padding: 7px 15px;
  }
}

form {
  /* background-color: #ffeeff; */
  position: relative;
  padding: 50px 50px;
  border-radius: 20px;
  display: block;
  margin: auto;
  max-width: calc(100% - 60px);
  width: 500px;
  background: inherit;
}

form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
  filter: blur(4px);
  background: inherit;
}

form,
form * {
  box-sizing: border-box;
}

.form-content {
  position: relative;
  z-index: 20;
  width: 100%;
  margin: auto;
  max-width: 300px;
}

.msg {
  font-size: 40px;
  font-weight: 700;
  color: hotpink !important;
  animation: rotate1 infinite 4s linear;
}


.frosted-glass {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  background: inherit;
}

.frosted-glass:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  filter: blur(10px);
  margin: -20px;
}