@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

  form {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #ccc;
  }
  
  input[type="text"],
  input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
  }
  
  input[type="submit"],
  input[type="reset"] {
    padding: 10px 20px;
    background-color: #57BD82;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 10px;
  }

  
  
  
  


@media screen and (max-width: 760px) {
   

}