* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

  }
  
  
  #contact123 {
    height: 100vh;
    width: 100%;
    background-color: #020412;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .container12 {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 20px #00000010;
    background-color: rgb(66, 93, 248);
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .form-group {
    color: rgb(0, 0, 0);
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 5px;
    font-size: 18px;
    border: 1px solid rgba(128, 128, 128, 0.199);
    margin-top: 5px;
  }
  
  textarea {
    resize: vertical;
  }
  button[type="submit"] {
    margin-top: 30px;
    margin-left: 9vw;
    margin-right: 7wv;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid #fff724;
    background-color: #020412;
    color: #fff724;
    padding: 10px 30px;
    text-decoration: none;
  }
  button[type="submit"]:hover {
    background-color: rgb(214, 226, 236);
    
  }
  #status {
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
  }
  #status.success {
    background-color: green;
    animation: status 4s ease forwards;
  }
  #status.error {
    background-color: rgb(255, 0, 0);
    color: white;
    animation: status 4s ease forwards;
  }
  @keyframes status {
    0% {
      opacity: 1;
      pointer-events: all;
    }
    90% {
      opacity: 1;
      pointer-events: all;
    }
    100% {
      opacity: 0;
      pointer-events: none;
    }
  }




