@import url("./variables.css");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter';
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.form-container {
  background-color: #ffffff;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
  margin: 1.5rem 0;
}
header {
  width: 100%;
}

iframe.header {
  width: 100%;
  height: 4rem;
  border: none;
  display: block;
  overflow: hidden;
}

footer {
  width: 100%;
}

iframe.footer {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
  overflow: hidden;
}
.logo {
  width: 120px;
  margin: 0 auto 20px;
  display: block;
}

h2 {
  margin: 0 0 5px;
  font-weight: 600;
}

.subtitulo {
  color: #555;
  margin-bottom: 20px;
}

form {
  text-align: left;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="text"],
input[type="number"],
select {
  width: 100%;
  padding: 10px;
  border: 1.5px solid #b8dfff;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: #0078d4;
  outline: none;
}

.checkbox-group {
  margin-top: 20px;
}

.checkbox-group legend {
  font-weight: 600;
  margin-bottom: 10px;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.checkboxes label {
  width: 45%;
  font-weight: normal;
}

button {
  margin-top: 25px;
  width: 100%;
  background-color: #ffd500;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #ffcc00;
}

.login-link {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.login-link a {
  color: #0078d4;
  text-decoration: none;
}
