/* Reset de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px 30px;
}

.form-header {
  text-align: center;
  margin-bottom: 10px;
}

.form-header h1 {
  font-size: 24px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

.form-group input::placeholder {
  color: #aaa;
}

.form-group select {
  background-color: #fff;
}

.form-group select option {
  color: #333;
}

.btn-submit {
  width: 100%;
  background: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background: #0056b3;
}

.btn-submit:active {
  background: #003f7f;
}

input.invalid {
  border: 1px solid red;
}

.form-banner {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto 0px;
  padding-top: 100px;
  object-fit: contain;
  border-radius: 5px;

}