* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-image: url("../images/CornerBit background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    /* overflow: hidden; */
  }

  header {
    height: 8rem;
    background-image: url("../images/inline_LOGO.png");
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px; /* hides text but keeps it for SEO */
  }

  .logo {
    margin-top: 1rem;
  }

  .message {
    color: #fff;
    font-size: 4rem;
    padding-left: 1rem;
  }

  .message-two {
    font-size: 2rem;
    padding-left: 1rem;
  }

  .message-three > p {
    padding-left: 1rem;
    padding-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .message-three > form {
    padding-left: 1rem;
  }

  .message-three input {
    height: 3rem;
    width: 22rem;
    border: 2px solid #4B5971;
    border-radius: 8px;
    background-color: #5a616b47;
    text-align: left;
    font-size: 1.3rem;
    color: #fff;
    padding-right: 20px;
    padding-left: 1rem;
  }

  .msg-button {
    height: 3rem;
    width: 14rem;
    background-color: #FFC126;
    border: 1px solid #ffc126;
    border-radius: 8px;
    color: #0B1C3A;
    font-size: 1.4rem;
    margin-left: -20px;
    cursor: pointer;
  }

  .msg-button:hover {
    outline: 3px solid #C8CDD5;
    /* font-weight: bold; */
  }

  .container {
    display: flex;
    flex-direction: column;
    background-color: none;
    font-family: sans-serif;
  }

  .container div {
    background-color: none;
    color: #fff;
    margin-left: 2rem;
    text-align: left;
  }

  .hide {
    display: none;
  }

  #successMsg {
  display: none;
  position: relative;
  width: 96vw;
  height: 0;
  overflow: hidden;
  filter: blur(2px);
  transition: height 1s ease, filter 1s ease;
  padding: 2rem;
}

#successMsg.show {
  display: block;
  height: 81vh;
  filter: blur(0);
}

#successMsg > p {
  font-size: 2rem;
  line-height: 1.8;
}



  @media (max-width: 1100px) {
    .message {
      font-size: 3rem;
    }

    .message-two {
      font-size: 1.6rem;
    }

    .message-three > p {
        padding-top: 1rem;
        font-size: 1.2rem;
    }
    .message-three input {
        height: 2rem;
        width: 16rem;
        font-size: 1.2rem;
    }
    .msg-button {
        font-size: 1.2rem;
        height: 2.33rem;
        width: 10rem;
    }
  }

  @media (max-width: 600px) {
  .message {
    font-size: 2.2rem;
    padding-left: 0.5rem;
  }

  .message-two {
    font-size: 1.3rem;
    padding-left: 0.5rem;
  }

  .message-three > p {
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-top: 1rem;
  }

  .message-three input {
    width: 100%;
    max-width: 280px;
    height: 2.2rem;
    font-size: 1rem;
  }

  .msg-button {
    width: 100%;
    max-width: 200px;
    height: 2.4rem;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .container div {
    margin-left: 0.5rem;
    text-align: center;
  }

  #successMsg > p {
    font-size: 1.4rem;
  }
}

