/* Entrada principal de eleccion Actas o Administracion */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #e74141, #1b1919); 
  background-size: cover;
  background-attachment: fixed;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.main-content-inicio {
    margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.card-inicio {
  background: rgb(245, 243, 243);
  padding: 20px;
  border-radius: 10px;
  }

  .company-image-inicio {
  width: 400px; 
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px; 
}

.stats-inicio {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.custom-button-inicio {
  background-color: #ff3333;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px; 
}

.custom-button-inicio img {
  width: 50px; 
  height: 50px;
  margin-bottom: 8px;
  border-radius: 5px; 
}

.custom-button-inicio:hover {
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6);
  transform: scale(1.05);
}


 /* pagina de ingreso de tecnicos */

.body-login-tecnico {
  background: linear-gradient(to right, #e74141, #1b1919);
  background-size: cover;
  background-attachment: fixed;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}


.main-content-login-tecnico {
   margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.card-login-tecnico {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.company-image-login-tecnico {
  width: 200px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.input-container-login-tecnico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.custom-input-login-tecnico {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.submit-button-login-tecnico {
  background-color: #ff3333;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}


/* Menu de ingreso Administrativo */

.body-admin {
  background: linear-gradient(to right, #e74141, #1b1919); 
  background-size: cover;
  background-attachment: fixed;
  color: rgb(8, 8, 8);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.main-content-login-admin {
  background-color: linear-gradient(to right, #332f2f, #990f0f); 
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.card-login-admin {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.company-image-login-admin {
  width: 200px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.input-container-login-admin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color:rgb(8, 8, 8)
}

.custom-input-login-admin {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.submit-button-login-admin {
  background-color: #ff3333;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}


.negrita {
  font-weight: bold; 
}