* {
  box-sizing: border-box;
}

form {
  max-width:35%;
  min-width: 560px;
  margin: 0 16px;
}

/* Media query for small screens */
@media (max-width: 600px) { /* Adjust the 768px to your desired small screen width */
  form {
    max-width: 100%;
    min-width: 0px;
  }
}

input, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #33333333;
  padding: 5px 20px;
  margin-bottom: 5px;
  outline: none;
  transition: border-color 0.4s ease;
}

input:focus, textarea:focus {
  border-bottom: 1px solid #000000;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button {
  color: rgba(0,0,0,0.5);
  padding: 0px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  
}

button:hover {
  color: black;
}

text {
  color: black;
  padding: 0px 20px;
}

