/* styles.css */

/* Reset de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #212459;
  color: white;
}

h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
}
.btn {
  padding: 15px 30px;
  background-color: #f7bc00; /* Color naranja */
  color: #b81b16;
  text-decoration: none;
  border-radius: 30px; /* Bordes redondeados */
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}


.btn:hover {
  background-color: #b81b16; /* Color más oscuro al hacer hover */
  color:#f7bc00;
  transform: translateY(-3px); /* Efecto de elevación */
}

.btn:active {
  transform: translateY(2px); /* Efecto de presión */
}

label {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.hide{
  display:none;
}


/* HOME */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.logo {
  width: 150px; /* Ajusta el tamaño del logo */
  margin-bottom: 20px;
}


.btn-iniciar-sesion {
}


/* LOGIN */
.container-login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.content-login {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
}

#btn-acceder {}

.mensaje-error {
  color: red;
  margin-top: 20px;
  font-size: 1rem;
}