body {
  background: url("../../img/FondoConsulta.svg") no-repeat center center;
  background-size: 70%;
  background-position: center top;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.formBox {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.logoSection img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.form-input {
  margin-bottom: 1rem;
  text-align: left;
}

.form-input label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-input input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 2.5rem;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}

.btn-submit {
  background-color: #6464ac;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #4f4f94;
}

.footer {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-info {
  background: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-width: 80%;
  margin: 0 auto;
  color: #333;
}
