﻿/** ### LOGIN ### **/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.d-flex > div{
    flex: 1 1;
}
    .d-flex .btn-01 {
        white-space: nowrap;
    }

.displayNone {
    display: none;
}

.mt20 {
    margin-top: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #003478 !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.visible-ie {
    display: none;
}

.input-icon {
    position: relative;
}

    .input-icon > i {
        color: #cacaca;
        display: block;
        position: absolute;
        margin: 10px 2px 4px 10px;
        z-index: 3;
        width: 16px;
        height: 16px;
        font-size: 16px;
        text-align: center;
    }

    .input-icon > .form-control {
        padding-left: 33px;
    }

#LoginUser {
    margin: 0 auto;
}

.login label {
    font-weight: normal;
}

.login .logo {
    margin: 0 auto 25px auto;
    text-align: center;
}

    .login .logo img {
        margin: 0 auto;
    }

.login .content {
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    padding: 35px;
    /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.28);*/
    border-radius: 3px 3px 0 0;
    position: relative;
    width: 345px;
}

    .login .content .boxFlags {
        position: absolute;
        bottom: -53px;
        left: 50%;
        margin-left: -51px;
        padding: 12px 20px;
        background-color: rgba(8, 9, 2, 0.65);
        border-radius: 0 0 3px 3px;
    }

        .login .content .boxFlags a {
            display: inline-block;
            opacity: 0.6;
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

            .login .content .boxFlags a:hover {
                opacity: 1;
            }

            .login .content .boxFlags a.active {
                opacity: 1;
            }

.login-form .form-control:focus {
    border-color: #00475C !important;
}


.login .content .login-form {
    padding: 0px;
    margin: 0px;
}

.login .content .form-control {
    background-color: #fff;
}

.login .content .form-title {
    font-weight: 300;
    margin-bottom: 25px;
    margin-top: 0;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    color: #003478;
    text-transform: uppercase;
}

    .login .content .form-title:after {
        content: '';
        width: 35px;
        height: 2px;
        background-color: #003478;
        display: block;
        margin: 11px auto 0 auto;
    }

.fancy-checkbox-span {
    display: inline-block;
    color: white;
    margin-left: 5px;
    padding-top: 6px;
    vertical-align: top;
    font-size: 15px;
}

.recovery {
    color: #003478 !important;
    text-decoration: none !important;
    line-height: 22px;
    font-size: 15px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-align: center;
    margin-top: 15px;
    display: block;
}

    .recovery:hover {
        text-decoration: none;
        border-bottom: 0;
    }

.registerTxt {
    font-weight: normal;
    color: white;
    text-align: center;
}

    .registerTxt a {
        color: white;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .registerTxt a:hover {
            color: #003478;
        }

.login-txt {
    color: #003478;
    text-align: justify;
}


.container-boxLogin {
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   height: 100%;
   width: 100%;
   background-color: white;
   display: flex;
   overflow: hidden; /* Evita que haya desplazamiento por contenido */
}

.boxImgContainer {
   width: 50%;
   position: relative;
   overflow: hidden;
}

.image-slides {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   opacity: 0; /* Las imágenes están ocultas por defecto */
   animation: fadeImages 35s infinite ease-in-out;
}

/* Animación */
@keyframes fadeImages {
   0%, 20% {
      opacity: 1; /* Imagen visible */
      z-index: 1; /* Asegúrate de que la imagen activa esté al frente */
   }

   25%, 100% {
      opacity: 0; /* Imagen oculta */
      z-index: 0; /* Asegúrate de ocultar las imágenes no activas */
   }
}

/* Configuración de imágenes individuales */
.image1 {
   background-image: url('/Resources/images/bg1.webp');
   animation-delay: 0s; /* Primera imagen aparece inmediatamente */
}

.image2 {
   background-image: url('/Resources/images/bg2.webp');
   animation-delay: 7s; /* Segunda imagen después de 7s */
}

.image3 {
   background-image: url('/Resources/images/bg3.webp');
   animation-delay: 14s; /* Tercera imagen después de 14s */
}

.image4 {
   background-image: url('/Resources/images/bg4.webp');
   animation-delay: 21s; /* Cuarta imagen después de 21s */
}

.image5 {
   background-image: url('/Resources/images/bg5.webp');
   animation-delay: 28s; /* Quinta imagen después de 28s */
}






   .boxImgContainer img {
      width: auto;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: absolute;
      z-index: 90;
   }

   .boxContentImg {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 99;
      top: 0;
      left: 0;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      background-color: rgba(11, 49, 92,.6);
      z-index: 99;
      top: 0;
      left: 0;
   }

   .textBoxContentImg {
      color: white;
      padding: 50px 80px 175px;
      flex-direction: column;
      display: flex;
   }

   .textBoxContentImg .textDestacado {
      font-size: 2.7rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px;
   }

   .textBoxContentImg .text {
      font-size: 1.4rem;
      border-left: 2px solid;
      padding-left: 15px;
   }

   .boxLogin {
      display: flex;
      justify-content: center;
      flex-direction: column;
      margin: auto;
      height: 100%;
      width: 50%;
      vertical-align: middle;
   }

   .boxLogin ol, .boxLogin ul {
      list-style: auto;
      padding-left: 25px;
   }

   .mt0 {
      margin-top: 0 !important;
   }

   .mb25 {
      margin-bottom: 25px;
   }
   /**BOTONES*/
   .btn-01 {
      padding: 10px 16px 10px 16px;
      line-height: 18px;
      font-size: 18px;
      display: inline-block;
      font-weight: 400;
      text-decoration: none;
      border: 0;
      border-bottom: 3px solid rgba(0,0,0,0.15);
      color: white;
      border-radius: 3px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -webkit-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
      cursor: pointer;
      text-align: center;
      box-sizing: border-box;
      min-width: 88px;
   }

   .btn-01.primary {
      background-color: #003478;
   }

   .btn-01.orange {
      background-color: #D83B01
   }

   .btn-01:hover, .btn-01:focus, .btn-01:active {
      color: #FFFFFF;
   }

   .btn-01.primary:hover, .btn-01.primary:focus, .btn-01.primary:active {
      background-color: #2f5c82;
   }

   .btn-01.orange:hover, .btn-01.orange:focus, .btn-01.orange:active {
      background-color: #A80B01;
   }

   .btn-01.orange > img {
      vertical-align: -3px;
      margin-right: 9px;
   }

   .btn-block {
      display: block;
   }
   /** #### RESPONSIVE ###**/

   @media (max-height: 814px) {
      /*.boxLogin{
            position: relative;
            transform: initial;
            margin-top: 50px;
            margin-bottom:50px;
            top: initial;
            left: initial;
        }*/
   }
   /* Landscape phone to portrait tablet */
   @media (max-width: 767px) {
      .login .logo {
        margin-top: 10px;
    }

    .login .content {
        padding: 20px;
    }

    .recovery {
        text-align: center;
        clear: both;
        display: block;
        float: none;
        border-bottom: 0;
    }

    .btn-01 {
        display: block;
        margin-bottom: 10px;
    }

    .login .form-group {
        margin-bottom: 15px;
    }

    .login label {
        padding-top: 0px;
    }

    .boxLogin {
        width: auto;
        padding: 20px;
    }
}

/* Landscape phones and down */
@media (max-width: 480px) {
    .login .content {
        width: auto;
    }
}
/* Small Devices */
@media (max-width: 320px) {
}

/** Fancy Form **/
.fancyForm {
    margin: 0 auto;
    max-width: 390px;
}

    .fancyForm .row {
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
    }

    .fancyForm input:-webkit-autofill {
        background-color: white !important;
        -webkit-box-shadow: 0 0 0px 1000px white inset;
    }

    .fancyForm input[type="text"],
    .fancyForm input[type="password"],
    .fancyForm textarea {
        width: 100%;
        height: 40px;
        padding: 10px 10px 10px 90px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        color: #0b0a06 !important;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        font-size: 16px;
        line-height: 16px;
    }

    .fancyForm textarea {
        height: auto;
        min-height: 200px;
        padding: 50px 10px 10px 10px;
    }

        .fancyForm input[type="text"] + label,
        .fancyForm input[type="password"] + label,
        .fancyForm textarea + label {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            height: 40px;
            line-height: 40px;
            font-size: 12px;
            font-weight: bold;
            width: 80px;
            text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: white;
            background: #003478;
            border-radius: 3px 0 0 3px;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
        }

    .fancyForm .row label i {
        font-size: 19px;
        vertical-align: middle;
    }

    .fancyForm textarea + label {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .fancyForm input[type="text"]:focus,
    .fancyForm input[type="password"]:focus {
        padding-left: 10px;
    }

    .fancyForm textarea:focus {
        padding-top: 10px;
    }

    .fancyForm input[type="text"]:focus + label,
    .fancyForm input[type="password"]:focus + label {
        -webkit-transform: translateZ(0) translateX(-100%);
        transform: translateZ(0) translateX(-100%);
    }

    .fancyForm textarea:focus + label {
        -webkit-transform: translateZ(0) translateY(-100%);
        transform: translateZ(0) translateY(-100%);
    }

    /*input[type="checkbox"] {
        margin-right: 5px;
        height: 18px;
        width: 18px;
        vertical-align: -4px;
    }

    input[type="checkbox"] + label {
        font-size: 14px;
    } */

    .fancyForm input[type="radio"] {
        position: absolute;
        overflow: hidden;
        clip: rect(0 0 0 0);
        height: 1px;
        width: 1px;
        margin: -1px;
        padding: 0;
    }

        .fancyForm input[type="radio"] + label {
            position: relative;
            display: inline-block;
            overflow: hidden;
            text-indent: -9999px;
            background: #ccc;
            width: 30px;
            height: 30px;
            border-radius: 100%;
            cursor: pointer;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        }

            .fancyForm input[type="radio"] + label:before {
                content: '';
                position: absolute;
                display: block;
                height: 10px;
                width: 10px;
                top: 50%;
                left: 50%;
                background: white;
                border-radius: 100%;
                box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
                -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
                transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
                -webkit-transform: translateZ(0) translate(-50%, -50%) scale(0);
                transform: translateZ(0) translate(-50%, -50%) scale(0);
            }

        .fancyForm input[type="radio"]:checked + label {
            background: #003478;
        }

            .fancyForm input[type="radio"]:checked + label:before {
                -webkit-transform: translateZ(0) translate(-50%, -50%) scale(1);
                transform: translateZ(0) translate(-50%, -50%) scale(1);
            }

        /*.fancyForm input[type="checkbox"] + label {
            position: relative;
            display: inline-block;
            overflow: hidden;
            text-indent: -9999px;
            background: rgba(11, 10, 6, 0.6);
            width: 60px;
            height: 30px;
            border-radius: 100px;
            cursor: pointer;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        }

            .fancyForm input[type="checkbox"] + label:before {
                content: '';
                position: absolute;
                display: block;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: #003478;
                border-radius: 100px;
                -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
                transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
                -webkit-transform: translateZ(0) scale(0);
                transform: translateZ(0) scale(0);
            }

            .fancyForm input[type="checkbox"] + label:after {
                content: '';
                position: absolute;
                top: 2px;
                left: 2px;
                display: block;
                height: 26px;
                width: 26px;
                background: white;
                border-radius: 100%;
                box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
                -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
                transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
                -webkit-transform: translateZ(0) translateX(0);
                transform: translateZ(0) translateX(0);
            }

        .fancyForm input[type="checkbox"]:checked + label {
            background: #003478;
        }

            .fancyForm input[type="checkbox"]:checked + label:after {
                left: calc(100% - 28px);
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }*/

    .fancyForm button {
        position: relative;
        overflow: hidden;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        font-size: 12px;
        font-weight: bold;
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: white;
        border: none;
        background: #003478;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        -webkit-transform: translateZ(0) translateX(0);
        transform: translateZ(0) translateX(0);
        z-index: 2;
    }

        .fancyForm button:before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background: #01579B;
            height: 100%;
            width: 100%;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            -webkit-transform: translateZ(0) scale(0);
            transform: translateZ(0) scale(0);
            z-index: -1;
        }

        .fancyForm button:hover:before, .fancyForm button:focus:before {
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        }


.boxAlert {
    position: relative;
    padding: 17px 30px 17px 55px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    display: block;
    /*margin-top: 25px;*/
}

    .boxAlert:before {
        font-family: "Font Awesome 5 Pro";
        display: inline-block;
        color: #fff;
        position: absolute;
        left: 20px;
        font-size: 21px;
    }

    .boxAlert a {
        color: white;
    }

.boxAlert-error {
    margin: 15px 0 15px 0;
    background-color: #F44336;
}

    .boxAlert-error:before {
        content: "\f06a";
    }

.boxAlert-ok {
    background-color: #1abc9c;
}

    .boxAlert-ok:before {
        content: "\f058";
    }

.boxAlert-ok-ribbon:after {
    content: '';
    display: inline-block;
    border-top: 15px solid #1abc9c;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-bottom: 14px solid transparent;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: absolute;
    left: 50%;
    bottom: -29px;
    margin-left: -14px;
}

.txtAdvertencia {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-size: 13px;
    line-height: 14px;
}
.text-center{
    text-align: center;
}
/* Tooltip Bootstrap */
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .tooltip.in {
        opacity: 0.9;
        filter: alpha(opacity=90);
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0;
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px;
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0;
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.boxMostrarPassword {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    font-size: 17px;
    width: 40px;
    text-shadow: 0 0 2px rgb(0 0 0 / 10%);
    text-align: center;
    text-transform: uppercase;
    background: #e3e3e3;
    border-radius: 3px 3px 3px 3px;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    cursor: pointer;
}

    .boxMostrarPassword:hover {
        background: #111;
        color: white;
    }
