/* Reset y configuración base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9 url('/images/banners/registrar.png') no-repeat center center;
  background-size: cover;
  color: #284114; /* Todas las letras en verde olivo */
}

/* Contenedor principal (invisible) */
.container {
  position: relative;
  width: 400px;
  max-width: 90%;
  margin: 0px auto;
  background: transparent; /* Contenedor invisible */
  padding: 30px;
  border-radius: 8px;
  box-shadow: none; /* Sin sombra */
}

/* Título */
.container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #284114; /* Título en verde olivo */
}

/* Grupos de formulario */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #284114; /* Etiquetas en verde olivo */
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff; /* Fondo amarillo */
  color: #284114;
}

/* Botón de enviar */
.btn {
  width: 100%;
  padding: 12px;
  background-color: #284114; /* Verde aceituna */
  color: #fff;
  border: 1px solid white; /* Bordes blancos finos */
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background-color: #6B8E23; /* Variación de verde aceituna para el hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Enlace para ir al login */
.link {
  text-align: center;
  margin-top: 15px;
}

.link p {
  margin: 0;
  font-size: 14px;
  color: #556B2F;
}

.link a {
  color: #284114;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.link a:hover {
  color: #6B8E23;
}

/* Mensaje de error */
.error-message {
  color: red;
  text-align: center;
  margin-top: 10px;
}
