*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
html,body{
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  background: #000000;
}



.VV {
  padding: 10px 20px;
  margin-right: 15px;
  font-size: 16px;
  background-color: #000000;
  color: white;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: fixed; /* Fija el botón en la parte superior */
  top: 10px; /* Distancia desde la parte superior */
  right: 10px; /* Distancia desde el borde izquierdo */
  z-index: 1000; /* Asegura que el botón quede por encima de otros elementos */
}

.VV:hover {
  background-color: #c60000;
  transform: scale(1.05);
}

.VV:active {
  transform: scale(0.95);
}

.VV i {
  margin-right: 5px;
}

.VV i:hover {
  color: #c60000;
}



/* Estilos generales */
body {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background: linear-gradient(90deg,#c60000, #000000, #000000, #000000, #f9ba07);
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Contenedor del formulario */
form {
  background-color: #000000;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 10px solid #242222;
  border-bottom: 10px solid #242222;
  position: relative;
}

/* Título del formulario */
form h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.checkbox.small-text label {
  font-size: 17px;
}

/* Etiquetas y campos */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  background-color: #000000;
  color: #ffffff;
}

form .content{
  display: flex;
  width: 100%;
  height: 50px;
  font-size: 10px;
  align-items: center;
  justify-content: space-around;
}

form .content .checkbox{
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="text"],
input[type="email"],
input[type="password"],
select[id="role_id"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 20px;
  border: 5px solid #242222 ;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #007488;
  outline: none;
}


select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 1px;
  background-color: #ffffff;
  font-size: 20px;
  color: #000000;
  appearance: none; /* elimina el estilo del sistema en algunos navegadores */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

select:focus {
  border-color: #007488;
  outline: none;
}

select option {
  padding: 10px;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
}


/* Botón de envío */
input[type="submit"] {
  background-color: #242222;
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 20px;
  width: 100%;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #007488;
}

/* Mensajes de éxito o error */
.message {
  padding: 10px;
  margin-bottom: 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

form .content .pass-link{
  color: #007488;
}


.message.success {
  background-color: #f9ba07;
  color: #000000;
}

.message.error {
  background-color: #c60000;
  color: #ffffff;
}


.content {
  display: flex;
  font-size: 17px;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  flex-wrap: wrap; /* Para que se acomode bien en pantallas pequeñas */
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
}

.pass-link a {
  text-decoration: none;
  color: #6203af;
  font-size: 17px;
  transition: color 0.3s ease;
}

.pass-link a:hover {
  color: #007488;
}

.signup-link a {
  text-decoration: none;
  color: #6203af;
  font-size: 17px;
  transition: color 0.3s ease;
}

.signup-link a:hover {
  color: #007488;
}

.mensaje {
  position: fixed;
  top: 20px; /* Puedes ajustar */
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 6px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 17px;
  z-index: 1000;
  max-width: 80%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mensaje.error {
  background-color: #5a0000;
  color: #ffffff;
  border: 5px solid #c60000;
}

.mensaje.exito {
  background-color: #01ad01;
  color: #ffffff;
  border: 1px solid #005c00;
}
