body, ul {
    margin: 0;
    padding: 0;
}

.title {
    color: rgb(70, 110, 255);
    font: bold 25px/40px Poppins;
    letter-spacing: 0px;
    text-align: left;
    font-size: 25px;
    opacity: 1;
}

.description{
    color: #707070;
    font: normal 20px/30px Poppins;
    letter-spacing: 0px;
    text-align: left;
    font-size: 15px;
    opacity: 1;
}

.t {
    color: #707070;
    font: normal 20px/30px Poppins;
    letter-spacing: 0px;
    text-align: left;
    font-size: 15px;
    opacity: 1;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 700px;
    display: grid;
    gap: 15px;
    
  }

  label {
    display: block;
    margin-bottom: 8px;
    
  }

  input, textarea, select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #1c5e8a;
  }

  .grid-container {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    
  }

  h3 {
    margin-bottom: 8px;
  }

.b1 {
    background-color: rgb(70, 110, 255);
    color: #fff;
    padding: 2px auto; 
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 20%;
    
  }

  input[type="checkbox"] {
    transform: scale(1.2); 
    vertical-align: middle; 
    width: 11px;
  }
  
  .privacy-checkbox {
    display: inline-flex;
    text-align: center;
    margin-top: 0px;
  }
 .privacy-rules{
    margin-left: 10px;
    margin-top: 22px;
    color: #707070;
    font: normal 20px/30px Poppins;
    letter-spacing: 0px;
    text-align: left;
    font-size: 12px;
    opacity: 1;
    line-height: 1.5;
 }

 @media (max-width: 844px) {
  .grid-container {
      grid-template-columns: 1fr;
      width: 100%; 
  }
  form {
      width: 100%; 
  }
  .input, textarea, select {
      width: 100%;
  }
  .privacy-checkbox{
      width: 100%;
  }
  .privacy-rules{
      margin-top: 0px;
 }
  .b1{
    width: 55%;
  }
}