@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300');
@import url('https://fonts.googleapis.com/css?family=Dosis');

p,*{
    font-family: 'Open Sans Condensed', sans-serif;
}

.logo{
    width: 150px;
    position: relative;
}

center{
    padding-top:5%;
    padding-left: 15%;
    padding-right: 15%;
}

center form{
    background: white;
    padding: 30px;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border: 0px solid #000000;
}


body {
    font-family: 'Roboto', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    background-color: #f0f2f5 !important; /* Un fondo claro por defecto */
    background-image: url('https://envialo.wakusoft.com/assets/img/envialo_logo.jpg') !important; /* Reemplaza con la URL de tu logo de fondo */
    background-size: cover !important; /* Ajusta el logo para cubrir el fondo */
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}

body::before {
    content: ''!important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: rgba(255, 255, 255, 0.7) !important; /* Capa semitransparente blanca para mejorar la legibilidad del formulario */
    z-index: 1 !important;
}

.btn-primary {
    background-color: #004d99; /* Azul oscuro de tu logo */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary:hover {
    background-color: #003366; /* Un azul un poco más oscuro al pasar el ratón */
}

/*Nombre de la empresa*/
#empresaConfig{
    color:#a1a1a1;
    font-size: 30px;
    font-family: 'Open Sans Condensed', sans-serif;
}

.entrar{
    width: 200px;
    /*animation: myfirst 20s infinite;*/
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
}

#resultado{
    padding: 10px;
    color:red;
    font-size: 30px;
}

.olvido{
    top:20px;
    padding: 20px;
    position: relative;
    left: -30px;
    width: 125%;
    color:white;
    background: #2e9eac;
}

.olvido1{
    top:20px;
    padding: 20px;
    position: relative;
    left: -30px;
    width: 125%;
    color:white;
    background: #3dc067;
}

.olvido2{
    top:20px;
    padding: 20px;
    position: relative;
    left: -30px;
    width: 125%;
    color:white;
    background: #006ed8;
}

input{
    font-family: 'Dosis', sans-serif;
}

body{
    /*-webkit-animation: myfirst 20s infinite; /* Safari 4.0 - 8.0 */
    /*-webkit-animation-direction: alternate; /* Safari 4.0 - 8.0 */
    /*animation: myfirst 20s infinite;*/
    /*animation-direction: alternate;*/
  }
  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes myfirst {
      0%   {background: white;}
      25%  {background: #207ce5;}
      50%  {background: #20e337;}
      75%  {background: #207ce5;}
      100% {background: white;}
  }
  
  @keyframes myfirst {
      0%   {background: white;}
      25%  {background: #207ce5;}
      50%  {background: #20e337;}
      75%  {background: #207ce5;}
      100% {background: white;}
  }