.fontypo-form {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.fontypo-form * {
  box-sizing: border-box !important;
}

.fontypo-form label {
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  display: block;
}

.fontypo-form input[type="email"],
.fontypo-form input[type="text"] {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  margin-bottom: 15px;
  display: block;
}

.fontypo-form .checkbox {
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 0.95rem;
  color: #555;
}

.fontypo-form button {
  width: 100%;
  background-color: #0057A0;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.fontypo-form button:hover {
  background-color: #003c75;
}

@media (max-width: 500px) {
  .fontypo-form {
    width: 90%;
    padding: 15px;
  }

  .fontypo-form input,
  .fontypo-form button {
    font-size: 1rem;
    padding: 10px;
  }
}
