
@import "https://unpkg.com/open-props";
/* estilos.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.precarga {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(0, 0, 0); */
    background: linear-gradient(to bottom, #062236, #0482d6); /* Fondo degradado de azul */;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
    flex-direction: column;
     opacity: 1;
    transition: opacity 1s ease-in-out; /* Agrega la transición de opacidad */
    
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.logo_svg_intro{
  filter: brightness(0) invert(1);
  width: 120px;
}




@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



#video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contenido {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(57, 57, 57, 0.286); */
    /* color: #fff; */
}

.formulario {
    background-color: rgba(0, 0, 0, 0.248);
   /* background-color:   var(--blue-6); */
    padding: 30px;
        width: 240px;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        display: flex;
        flex-direction: column;
    justify-content: center;
    align-items: center;
    /* filter: blur(10px); */
}

.formulario h1,  h2 , h3 , h4, h5 {
color: rgb(255, 255, 255);
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.723);
/* transition: 5s; */
}

.formulario   h3  {
font-size: 25px;
}

.formulario  h5  {
font-size: 20px;
font-weight: 100;
margin: 10px;
}

h2:hover{
  /* color: rgb(232, 232, 232); */
   text-shadow: 1px 1px 5px rgba(141, 141, 141, 0.572);
transition: 5s;
  }



.slight-ease {
  animation: fade-in 300ms var(--ease-1);
}


.formulario h4 {
    padding-bottom: 15px;
}

#boton_log {
 /* color: blueviolet; */
width: 250px;
background-color: rgb(44, 74, 139);
    box-shadow: 0px 0 10px rgba(203, 202, 202, 0.679);
      border: 0.1px solid rgba(201, 201, 201, 0); 
     
}

.push-out {
  animation:
    var(--animation-scale-down),
    var(--animation-fade-out);
  animation-timing-function: var(--ease-squish-4);
}


#boton_log:hover {
background-color: rgb(45, 95, 212);

}

#boton_log:active  {
background-color: rgb(227, 227, 227);
  animation:
    var(--animation-fade-out) forwards,
    var(--animation-slide-out-down);
  animation-timing-function: var(--ease-squish-3);
  animation-duration: 1s;
}




.logo_svg {
  filter: brightness(0) invert(1);
  width: 70px;
    /* transform: scale(1.2); */
  /* filter: brightness(5); */
  /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); */
   /* opacity: 0.7; */
  /* padding-bottom: 0px; */
 
    /* fill: red; */
      /* stroke-width: 0.01; */
        /* transform: rotate(45deg); */
}


.desvanecer {
  color: transparent;
  animation: desvanecer 1s ease-in-out forwards;
}

@keyframes desvanecer {
  0% {
    color: transparent;
  }
  100% {
    color: rgb(255, 255, 255); /* Cambia esto al color deseado */
  }
}


.desvanecer-brillo {
  color: transparent;
  animation: desvanecer 2s linear forwards, brillo 3s linear 2s forwards;
  font-size: 30px;
  font-weight: 100;
  margin: 0;
}

@keyframes desvanecer {
  0% {
    color: transparent;
  }
  100% {
    color: rgb(255, 255, 255); /* Cambia esto al color deseado al final del desvanecimiento */
  }
}

@keyframes brillo {
  0%, 100% {
    color: rgb(255, 255, 255);
  }
  50% {
    color: rgb(0, 229, 255); /* Cambia la opacidad según tus preferencias */
  }
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  background-color: rgb(240, 240, 240);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 5px 0 0 5px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0 5px 5px 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

#boton_log {
 /* color: blueviolet; */
 padding: 0.375rem 0.75rem;
 color: white;
  border-radius: 5px 5px 5px 5px;
width: 250px;
background-color: rgb(44, 74, 139);
    box-shadow: 0px 0 10px rgba(203, 202, 202, 0.679);
      border: 0.1px solid rgba(201, 201, 201, 0); 
     
}

        input::placeholder {
            /* font-family: Arial, sans-serif; Cambia la fuente del placeholder */
            font-size: 12px; /* Cambia el tamaño de fuente del placeholder */
            color: #999; /* Cambia el color del placeholder */
            /* font-style: italic; Cambia el estilo de fuente del placeholder */
        }