/*reg*/
html,
body {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(25deg, #009ada, #ffffff);

  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}
#content_container {
  width: 30%;
  height: 70%;
}

#form_container {
  width: 100%;
  height: 100%;

  background-color: #009ada;
  box-shadow: 0 0 50px -20px #000000;
  border-radius: 2%;

  overflow: hidden;
}

#form_header_container {
  width: 100%;
  height: 5%;

  display: flex;
  justify-content: center;
  align-items: center;
  float: left;

  padding: 20px;
  padding-bottom: 30px;
  padding-top: 30px;

  border-bottom: 1px solid transparent;
  border-image: -webkit-linear-gradient(25deg, #009ada, #ffffff) 20;
  background: #000000;
}

#form_header {
  display: inline-block;
  font-size: 15px;
  font-family: Bowlby One SC;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;

  background: -webkit-linear-gradient(25deg, #009ada, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#form_content_container {
  width: 100%;
  height: 90%;

  float: left;

  display: flex;
  justify-content: center;
  align-items: center;

  padding-top: 30px;
}

#form_content_inner_container {
  width: 75%;
  height: 100%;

  float: left;
}

input {
  width: 100%;
  height: 40px;

  padding-left: 10px;
  margin-bottom: 20px;

  background: #ffffff;
  font-family: Montserrat;
  font-weight: 500;
  color: #000000;
  font-size: 12px;

  border-bottom: 2px solid transparent;
  border-top-left-radius: 2%;
  border-top-right-radius: 2%;
  border-image: -webkit-linear-gradient(25deg, #009ada, #ffffff);
}

#button_container {
  width: 100%;
  height: 10%;

  background-image: linear-gradient(
    80deg,
    rgb(0, 255, 106) 50%,
    #ffffff 50%,
    rgb(0, 255, 106) 50%,
    #ffffff 50%
  );
  color: #000000;

  float: left;

  margin-top: 5px;
}

#button_container button {
  width: 50%;
  height: 100%;
  float: left;

  background: transparent;
  color: inherit;

  font-family: Montserrat;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 12px;

  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
}
/*reg*/
@media (max-width: 768px) {
  /* styles for screens with width less than 768px */
  #content_container {
    width: 80%; /* change the width of the container */
  }
  input {
    height: 30px; /* change the height of the input fields */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* styles for screens with width between 768px and 1024px */
  #content_container {
    width: 60%; /* change the width of the container */
  }
}

@media (min-width: 1024px) {
  /* styles for screens with width greater than 1024px */
}
