@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.h-100 {
    height: 100% !important;
  }


body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('Mesatrabajo.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.wrapper{
width: 420px;
max-width: 100%;
background: transparent;
border: 2px solid rgba(255, 255, 255, .2);
backdrop-filter: blur(20px);
box-shadow: 0 0 10px rgba(0, 0, 0, .2);
color: #fff;
border-radius: 10px;
padding: 30px 40px;
margin: 15px;
}

.wrapper h1 {
font-size: 36px;
color: forestgreen;
text-align: center;
}
.wrapper .input-box{
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
  color: #fff;
}

.input-box i{
  position: absolute;
  right: 20px;
  top: 50%;
  color: #c80f2e;
  transform: translateY(-50%);
  font-size: 20px;
}
.wrapper .remember-forgot{
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -15px 0 15px;
}

.remember-forgot label input{
  accent-color: #fff;
  margin-right: 3px;
}
.remember-forgot a {
 color: #fff;
 text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
 }

 .wrapper .btn{
  width: 100%;
  height: 45px;
  background: #c80f2e;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
 }



 .wrapper .register-link{
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
 }

 .register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
 }
 .register-link p a:hover{
  text-decoration: underline;
 }

 .logo-small {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    line-height: 44px;
  }

  .logo-small img {
    width: 80px;
    height: 60px;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    margin-right: 8px;
    border: 2px;
    vertical-align: middle;
    background: #fff;
  }

  .logo-small h5{
    display: inline-block;
    margin-left: 38px;
    font-size: 25px;
    vertical-align: middle;
  }

  .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

  .loader {
    text-align: center; /* Centra el contenido */
  }

  .loader img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
}
  .jumping-logo {
    width: 100px; /* Ajusta el tamaño del logo según tus preferencias */
    animation: jump 0.4s alternate infinite; /* Animación de salto */
  }

  .progress-bar {
    width: 0;
    height: 10px; /* Ajusta el tamaño de la barra de progreso según tus preferencias */
    background: #c80f2e; /* Color de la barra de progreso */
    margin-top: 20px; /* Espacio entre el logo y la barra de progreso */
    animation: progress 2.5s linear infinite;
  }

  @keyframes jump {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
  }

  @keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
  }

  #snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: rgb(221, 63, 0);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    transform: translate(-50%, 0);
    width: 80%;
    max-width: 300px;
}

#snackbar.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

