
@import 'mediaqueries.css';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    text-align: center;
    text-align: -webkit-center;
    background-color: #023149;
    background-size: 100% 900px;
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(#0594be, #023149 900px);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0594be), to(#023149));
    background-image: -o-linear-gradient(#0594be, #023149 900px);
    background-image: -ms-linear-gradient(#0594be, #023149 900px);
    -cp-background-image: linear-gradient(#0594be, #023149 900px);
    background-image: linear-gradient(#0594be, #023149 900px);
    font-family: helvetica, arial, sans-serif;
}
.contenedor{
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}

:root{
    --color-primario: #3366FF;
}

.text-primario{
    color: var(--color-primario);
}
.btnLogin{
    background-color: #15812c;
    color: #fff;
    font-weight:500;
    height:56px;
}
.btnLogin:hover{
    box-shadow: 5px 5px 10px #ccc;
    color: #fff;
}


.link-custom a{
    text-decoration: none;
    font-weight: 500;
}

#icon-view-pass2{
    position: relative;
    top: 6px;
    z-index: 2;
    cursor: pointer;
}
#logo{
    width: 100px;
}

.error {
    width: 250px;
    height: 150px;
    font-size: 8px;
  }

  

.w-100 {
    width: 100%!important;
    height: 45px;
}


.box-login{
    margin-top: 200px;
    background: floralwhite;
}


.email-user {
    position: relative;
  }

  .modal{
    top: 20%;
  }

  .modal-dialog {
    width: 400px;
  }
  
  .modal-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .modal-body {
    text-align: center;
  }
  .sweet_loader {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: ro;
    transform-origin: 50% 50%;
    transform: rotate(0) translate(0,0);
  }
  @keyframes ro {
    100% {
      transform: rotate(-360deg) translate(0,0);
    }
  }