body{
    width: 100%;
    height: 100vh;
    background-size: cover;
    padding: 0;
    margin: 0;
    display: flex;
    backdrop-filter: blur(2px);
}

.loginCard{
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
}

.shadowBox {
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}


.login {
    margin: 25px auto 0;
    max-width: 500px;
}
.login-button:hover{
    background: #156082 !important;
    border: 1px solid #156082 !important;
    color: white !important;
}

.login-header {
    color: #fff;
    text-align: center;
    font-size: 300%;
}

.login-form {
    /* border: .5px solid #fff; */
    /* background: white; */
    /* box-shadow: 0 0 10px #000; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 10px #000; */
}

.login-form h3 {
    text-align: left;
    margin-left: 40px;
    color: black;
}

.login-form {
    box-sizing: border-box;
    text-align: center;
}

.login input[type="text"],
.login input[type="password"] {
    max-width: 400px;
    width: 80%;
    line-height: 2em;
    font-family: 'Ubuntu', sans-serif;
    /* margin: 1em 2em; */
    margin: 2px 0 5px 0;
    border-radius: 5px;
    border: 2px solid #f2f2f2;
    outline: none;
    padding-left: 10px;
    font-size: 1.2em;
    font-size: 0.8em;
}

.login-form input[type="button"] {
    height: 30px;
    width: 100px;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    color: black;
    cursor: pointer;
    margin-top: 20px;
}


.boxLoginData{
    font-size: 1.4rem;
}

@media (max-width: 1300px) {
    .boxLoginData{
        font-size: 13px !important;
    }
}

@media (max-width: 1300px) {
    .h3, h3 {
      font-size: 13px;
    }
  }

  .tittle_welcome{
    margin: 10px auto 0;
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 0.13em;
  }



  /* ANIMACIONES */
    .roll-in-left {
        -webkit-animation: roll-in-left 2.0s ease-out both;
                animation: roll-in-left 2.0s ease-out both;
    }
    /* ----------------------------------------------
    * Generated by Animista on 2024-7-30 19:7:11
    * Licensed under FreeBSD License.
    * See http://animista.net/license for more info. 
    * w: http://animista.net, t: @cssanimista
    * ---------------------------------------------- */

    /**
    * ----------------------------------------
    * animation roll-in-left
    * ----------------------------------------
    */
    @-webkit-keyframes roll-in-left {
        0% {
        -webkit-transform: translateX(-400px) rotate(-540deg);
                transform: translateX(-400px) rotate(-540deg);
        opacity: 0;
        }
        100% {
        -webkit-transform: translateX(0) rotate(0deg);
                transform: translateX(0) rotate(0deg);
        opacity: 1;
        }
    }
    @keyframes roll-in-left {
        0% {
        -webkit-transform: translateX(-400px) rotate(-540deg);
                transform: translateX(-400px) rotate(-540deg);
        opacity: 0;
        }
        100% {
        -webkit-transform: translateX(0) rotate(0deg);
                transform: translateX(0) rotate(0deg);
        opacity: 1;
        }
    }
  

    /* LOADING */

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #fff;
    }
    
    #preloader:before {
        content: "";
        position: fixed;
    }


    .rotate-90-cw {
        -webkit-animation: rotate-90-cw 2.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                animation: rotate-90-cw 2.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }


    /* ----------------------------------------------
    * Generated by Animista on 2024-8-9 20:54:48
    * Licensed under FreeBSD License.
    * See http://animista.net/license for more info. 
    * w: http://animista.net, t: @cssanimista
    * ---------------------------------------------- */

    /**
    * ----------------------------------------
    * animation rotate-90-cw
    * ----------------------------------------
    */
    @-webkit-keyframes rotate-90-cw {
        0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        }
        100% {
        -webkit-transform: rotate(450deg);
                transform: rotate(450deg);
        }
    }
    @keyframes rotate-90-cw {
        0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        }
        100% {
        -webkit-transform: rotate(450deg);
                transform: rotate(450deg);
        }
    }
  
    /* LOADING */
    .loader {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: inline-block;
        border-top: 4px solid #FFF;
        border-right: 4px solid transparent;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
      }
      .loader::after {
        content: '';  
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-bottom: 4px solid #FF3D00;
        border-left: 4px solid transparent;
      }
      @keyframes rotation {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      } 
    