



form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 13.5px;
    align-items: center;
  }
  
form input {
    width: 90%;
    height: 45px;
    border: 0;
    padding: 0 20px;
    font-weight: 600;
    background-color: white;
    font-size: 1.2rem;
  }
  
form input:focus {
    outline: 1.5px solid rgba(0, 0, 0, 0.45);
  }
  
form textarea {
    width: 90%;
    border: 0;
    resize: none;
    padding: 20px;
    height: 150px;
    font-weight: 600;
    background-color: white;
    font-size: 1.2rem;
    color: black;

  }
  
form textarea:focus {
    outline: 1.5px solid #000;
  }
  
button {
    width: 100%;
    height: 45px;
    border: 0;
    background-color: #141212;
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: #fff;
  }


  html {
    scroll-behavior: smooth;
  }