* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

body {
  background: #4e537a;
  height: 100vh;
  display: flex;
  color: #555;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: #d5bca6;
  padding: 4rem 2rem;
  min-width: 470px;
  margin: auto;
  border-radius: 0.6rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.logo img {
  max-width: 120px;
  height: auto;
}

h2 {
  text-align: center;
  padding: 0.75rem;
  font-size: 1.5rem;
  color: #333;
}

label,
input,
textarea {
  display: block;
  margin: 0.8rem 0;
  outline: none;
}

input[type='text'],
input[type='email'],
textarea {
  border: 1px solid #ddd;
  padding: 0.6rem;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1rem;
  color: #333;
}

input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
  border-color: crimson;
  box-shadow: 0 0 4px rgba(220, 20, 60, 0.5);
}

input[type='submit'] {
  margin: 1.5rem auto;
  font-size: 1.1rem;
  background-color: crimson;
  color: #fff;
  padding: 0.4rem 1rem;
  border: 2px solid transparent;
  border-radius: 0.6rem;
  display: block;
  width: 100%;
}

input[type='submit']:hover {
  color: crimson;
  background-color: #fff;
  border: 2px solid crimson;
  cursor: pointer;
}

textarea {
  resize: none;
}

.error {
  color: crimson;
  font-size: 0.9rem;
}

.success {
  color: #189718;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}
