.uf-form {
  max-width: 450px;
  margin: 30px auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-family: "Inter", sans-serif;
}
.uf-form input,
.uf-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.2s;
}
.uf-form input:focus,
.uf-form textarea:focus {
  border-color: #00BFA6;
  box-shadow: 0 0 0 2px rgba(0,191,166,0.2);
  outline: none;
}
.uf-form button {
  width: 100%;
  background: #00BFA6;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}
.uf-form button:hover {
  transform: scale(1.05);
  background: #009e8a;
}
.uf-form .uf-msg {
  text-align: center;
  margin-top: 10px;
  color: #00BFA6;
  font-weight: 600;
}
@media (max-width:480px){
  .uf-form{padding:20px;}
}
