

.form-container {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 420px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.vertical-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.terms label {
  font-weight: normal;
  font-size: 14px;
  color: #555;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0073e6;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005bb5;
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }

  input,
  button {
    font-size: 15px;
    padding: 10px;
  }
}
