
/* LOGIN */
    /* BASIC */

    a {
        color: #92badd;
        display:inline-block;
        text-decoration: none;
        font-weight: 400;
    }
  
    h2 {
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        display:inline-block;
        margin: 40px 8px 10px 8px; 
        color: #cccccc;
    }
  
    /* STRUCTURE */
    .wrapper {
        display: flex;
        align-items: center;
        flex-direction: column; 
        justify-content: center;
        width: 100%;
        height: 50%;
        min-height: 80%;
        padding: 20px;
    }
  
    #formContent {
        -webkit-border-radius: 20px 20px 20px 20px;
        border-radius: 20px 20px 20px 20px;
        /*padding: 20px;*/
        border-width: 2px;
        border-style: solid;
        border-color: rgb(0,0,128);
        background: #fff;
        padding: 30px;
        width: 50%;
        max-width: 450px;
        max-height: 450px;
        /*position: relative;*/
        padding: 0px;
        -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
        box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
        text-align: center;
    }
  
  
    /* TABS */
  
    h2.inactive {
        color: #cccccc;
    }
  
    h2.active {
        color: #0d0d0d;
        border-bottom: 2px solid #5fbae9;
    }
  
    /* FORM TYPOGRAPHY*/
    input[type=button], input[type=submit], input[type=reset]  {
        background-color: rgb(0,0,128);/*rgb(23,147,201);*/
        border: none;
        color: white;
        width: 95%;
        padding: 15px 50px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        font-size: 13px;
        -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
        box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
        -webkit-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        /*margin: 5px 20px 40px 20px;*/
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
  
    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
        background-color: rgb(23,147,201);
    }
  
    input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }
  
    #loginText {
        background-color: #f6f6f6;
        border: none;
        color: #0d0d0d;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 5px;
        width: 85%;
        border: 2px solid #f6f6f6;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
    }
  
    #loginPassword {
        background-color: #f6f6f6;
        border: none;
        color: #0d0d0d;
        padding: 14px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 5px;
        width: 85%;
        border: 2px solid #f6f6f6;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
    }
  
    #loginText:focus {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }
    #loginPassword:focus {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }
  
    #loginText:placeholder {
        color: #cccccc;
    }
  
    #loginPassword:placeholder {
        color: #cccccc;
    }
  
    /* ANIMATIONS */
  
    /* Simple CSS3 Fade-in-down Animation */
    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        align-items: center;
        flex-direction: column; 
        justify-content: center;
        /*width: 100%;*/
        height: auto;
        max-height: 50%;
       /* padding: 20px;*/
    }
  
    @-webkit-keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
  
    @keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
        }
        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
  
    /* Simple CSS3 Fade-in Animation */
    @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
    @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
    @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  
    .fadeIn {
        opacity:0;
        -webkit-animation:fadeIn ease-in 1;
        -moz-animation:fadeIn ease-in 1;
        animation:fadeIn ease-in 1;
  
        -webkit-animation-fill-mode:forwards;
        -moz-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
  
        -webkit-animation-duration:1s;
        -moz-animation-duration:1s;
        animation-duration:1s;
    }
  
    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }
  
    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }
  
    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }
    
    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }
  
    /* Simple CSS3 Fade-in Animation */
    .underlineHover:after {
        display: block;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 2px;
        background-color: rgb(0,0,128);
        content: "";
        transition: width 0.2s;
    }
  
    .underlineHover:hover {
        color: #0d0d0d;
    }
  
    .underlineHover:hover:after{
        width: 100%;
    }
  
    /* OTHERS */
    *:focus {
        outline: none;
    }
    
    #icon {
        width:65%;
        margin-top: 15px;
        margin-bottom: 30px;
    }
  
    .content__captcha > div{ margin: 0 auto; }
  
    /* LOGIN */
  
  
  
    /* MENÚ */
    .image-logo {
      width: 100%;
    }
  
  a {
    text-decoration: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  a:hover {
    text-decoration: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  
  
  /* -------------
  Sidebar
  ----------------*/
  .sidebar {
    text-decoration: none;
    position: fixed;
    width: 12em;
    height: 100%;
    top: 0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    -webkit-transform: translateZ(0);
    visibility: visible;
    -webkit-backface-visibility: hidden;
  }
  
  
  
  .sidebar header {
    text-decoration: none;
    background-color: rgb(0,0,128);
    width: 100%;
    display: block;
    padding: 0.75em	1em;
  }
  
  /* -------------
  Sidebar Nav
  ----------------*/
  .navbar {
     text-decoration: none;
     background-color: rgb(0,0,128);
     position: fixed;
     height: 60px;
     color: rgb(255, 255, 255);
  }
  
  .sidebar-nav {
    position: fixed;
    background-color: rgb(0,0,128);
    height: 100%;
    font-weight: 400;
    font-size: 1.2em;
    text-decoration: none;
    overflow: auto;
    padding-bottom: 6em;
    z-index: 9;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    /* -------------
    Chev elements
    ----------------*/
    /* -------------
    Nav-Flyout
    ----------------*/
    /* -------------
    Hover
    ----------------*/
  }
  .sidebar-nav ul {
    list-style: none;
    text-decoration: none;
    display: block;
    padding: 0;
    margin: 0;
  }
  .sidebar-nav ul li {
    margin-left: 0;
    text-decoration: none;
    padding-left: 0;
    display: inline-block;
    width: 100%;
    /* -------------
    Sidebar: icons
    ----------------*/
  }
  .sidebar-nav ul li a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 0.75em;
    text-decoration: none;
    padding: 1.05em	1em;
    position: relative;
    display: block;
  }
  .sidebar-nav ul li a:hover {
    background-color: rgb(23,147,201);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    text-decoration: none;
  }
  .sidebar-nav ul li i {
    font-size: 1.8em;
    padding-right: 0.5em;
    width: 9em;
    display: inline;
    vertical-align: middle;
    text-decoration: none;
  }
  .sidebar-nav > ul > li > a:after {
  
    font-family: ionicons;
    font-size: 0.5em;
    width: 10px;
    color: #fff;
    position: absolute;
    right: 0.75em;
    top: 45%;
    text-decoration: none;
  }
  .sidebar-nav .nav-flyout {
    position: absolute;
    background-color: rgb(240, 122, 11);
    z-index: 9;
    left: 2.5em;
    top: 0;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .sidebar-nav .nav-flyout a:hover {
    background-color: rgba(15, 11, 240, 0.199);
  }
  .sidebar-nav ul > li:hover .nav-flyout {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  
  .container-form {
      margin-top: 60px;
      margin-left: 20%;
    
  }