
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap');
     
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

 body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  background: #212529;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;  
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(/static/images/Fondo_facturador.png) no-repeat center center fixed;
  background-size: cover;
} 


.form-container {
  width: 610px;
  background: white;
  /* padding: 15px; */
  border: none;
  border-radius: 25px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}


.form-container-register {
  width: 900px;
  background: white;
  /* padding: 15px; */
  border: none;
  border-radius: 25px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.card-header {
  background: linear-gradient(135deg, #117864, #15a085);
  color: white;
  padding: 30px;
  text-align: center;
  border: none;
  border-radius: 25px 25px 0px 0px !important;
  font-size: 20px;
  }

.card-header-register {
  background: linear-gradient(135deg, #117864, #15a085);
  color: white;
  padding: 30px;
  text-align: center;
  border: none;
  border-radius: 25px 0px 0px 25px !important;
  font-size: 20px;
  height: 732px;
  display: flex;
  justify-content: center;   /* centra vertical */
  align-items: center;       /* centra horizontal */
  text-align: center;
  }


.logos-register {
  /* que ocupe todo el alto disponible dentro del panel si quieres */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form {
  padding: 6px;
}

a {
  text-decoration: none;
}

/** Estilos para los botones de la aplicación.*/

.button {
  background: #117864;
  color: white;
  font-size: 14px;
}

.button:hover {
  color: white;
  filter: brightness(0.9);
}

.footer {
  /* border-top: 1px solid #e0e1ea; */
  border: none;
  color: #b9b9b9;
  font-size: 12px;
  background: #252525;
  margin-top: auto;
}

.form-control {
    border: 3px solid #e5e5e6;
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.form-control:focus{
  color: #117864 !important;
  border-color: #117864;
  box-shadow: 0 0 0 0.2rem rgba(17, 120, 100, 0.25);
}

.form-label{
  font-size: 18px;
  font-weight: bold;
}

.btn-signin{
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 46px;
}

.btn-signin::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  }

.btn-signin:hover::before {
  left: 100%;
  }


.footer-start p {
  font-weight: 500;
  line-height: 2.83;
  font-size: 16px;
}

.footer-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-end li {
  margin-right: 20px;
}

.footer-end li:last-child {
  margin-right: 0;
}

.footer a {
  font-weight: 500;
  line-height: 2.83;
  border-bottom: 1px transparent dashed;
}

.footer a:hover {
  color: #117864;
   border-color: #117864;
}