body {
    background: #d3959b; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #bfe6ba,
      #d3959b
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #bfe6ba,
      #d3959b
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  * {
    padding: 0px;
    margin: 0px;
  }
  .container {
    width: 100%;
    height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main_box {
    width: 420px;
    height: 500px;
    background: red;
    background: #dc2424;
    background: -webkit-linear-gradient(to right, #4a569d, #dc2424);
    background: linear-gradient(to right, #4a569d, #dc2424);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 16px rgb(32, 15, 15);
  }
  .thermo {
    height: 190px;
    display: block;
    margin: auto;
    /* background: #000; */
  }
  .form {
    /* background: #000; */
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  form {
    width: 50%;
    height: 40px;
    text-align: center;
  }
  select {
    padding: 0px 10px;
    width: 95%;
    height: 40%;
    border-radius: 25px;
    background: #2bc0e4; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #eaecc6,
      #2bc0e4
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #eaecc6,
      #2bc0e4
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: cursive;
    font-weight: bolder;
  }
  
  #accept,#send{
    padding: 10px;
    width: 39%;
    height: 15%;
    border: none;
    outline: none;
    border-radius: 25px;
    background: #2bc0e4; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #eaecc6,
      #2bc0e4
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #eaecc6,
      #2bc0e4
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: cursive;
    font-weight: bolder;
     font-size: large;
  }
  input[type="button"] {
    width: 50%;
    height: 100%;
    border-radius: 25px;
    margin: auto;
    background: #acb6e5; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #86fde8,
      #acb6e5
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #86fde8,
      #acb6e5
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-weight: bolder;

    font-family: cursive;
  }
  input[type="submit"]:active {
    transform: scale(1.1);
  }
  h1 {
    text-align: center;
    padding-top: 10px;
    font-size: 50px;
    width: 70%;
    /* background: red; */
    margin: auto;
  }
  .form2 {
    height: 90px;
    width: 80%;
    display: flex;
    flex-direction: row;
  }
  .form2 form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    height: 100%;
    align-items: center;
  }

  .img img {
    margin-top: 10px;
    width: 40px;
  }
  @media screen and (max-width: 500px) {
    .container {
      width: 80%;
      margin: auto;
      height: 85vh;
    }
    h1 {
      font-size: 40px;
    }
    select {
      width: 90%;
    }
    #accept,#send{
      font-size: medium;
      width: 60%;
    }
  }
  