/* estilos.css */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.form-container input,
.form-container textarea,
.form-container button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 6px rgba(0,123,255,0.2);
}

.form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.form-container button {
  background-color: #007BFF;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.form-container button:hover {
  background-color: #0056b3;
}

.form-container input[type="file"] {
  border: 1px dashed #bbb;
  padding: 10px;
  background: #fafafa;
}
