@import url('https://fonts.googleapis.com/css?family=Poppins');

/* BASIC */

body {
    font-family: "Poppins", Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #ff6900;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}
a:hover {
    color: #ff6900;
    text-decoration: underline;
}

a.gray {
    color: #999;
}

a.gray:hover {
    color: #999;
    text-decoration: underline;
}

h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin: 20px 8px 10px 8px;
    color: #cccccc;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.m-b-50 {
    margin-bottom: 50px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-b-25 {
    margin-bottom: 25px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-b-35 {
    margin-bottom: 35px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-l-30 {
    margin-left: 30px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}
/* STRUCTURE */
.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}

.navbar-default {
    background-color: #fff;
    border-color: #fff;
}

.navbar-fixed-top .navbar-right {
    padding-right: 15px;
}

.wrapper {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    padding: 45px 30px 240px;
    /*
    xmin-height: 100%;
    xpadding: 75px 30px 60px;
    xbackground-image: url(/resources/images/bg-image-1.jpg?id=7563) !important;
    */
    background-image: url(/resources/images/bg-image-2.webp?id=1002) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-bottom: 20px;
}

.wrapper-no-bg {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 80px 30px 30px;
}
footer {
    padding: 0px 30px 30px;    
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 15px;
    background: #fff;
    padding: 30px;
    margin-top: 40px;
    width: 90%;
    max-width: 420px;
    position: relative;
    -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: left;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: left;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

#formContent h2, #formContent .fadeIn.first, #formContent .logo {
    text-align: center !important;
    display: block;
}

#formContent .fadeIn.first {
    margin-bottom: 15px;
}

.login-error {
    color: red;
}

/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
}

/* FORM TYPOGRAPHY*/

.navbar-btn, input[type=submit] {
    background-color: #f26922;
    border: none;
    color: #fff !important;
    padding: 10px 15px !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -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=submit] {
    padding: 10px 30px !important;
}

    .navbar-btn:hover, input[type=submit]:hover {
        background-color: #ff8a4e !important;
    }

input[type=button], input[type=reset] {
    background-color: #56baed;
    border: none;
    color: black;
    padding: 15px 80px;
    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=reset]:hover {
        background-color: #39ace7;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]:active, .navbar-btn: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);
    }

input[type=text], input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 100%;
    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;
}

    input[type=text]:focus, input[type=password]:focus {
        background-color: #fff;
        border-bottom: 2px solid #f26922;
    }

    input[type=text]:placeholder, input[type=password]: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;
}

@-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: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }

/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width: 60%;
}

* {
    box-sizing: border-box;
}
.navbar-brand {
    padding: 10px 15px;
}
.navbar-header {
    min-height: 65px;
}
.copyright {
    font-size: 80%;
    padding-top: 15px;
}
.fw-light {
    font-weight: 300 !important
}
.fw-lighter {
    font-weight: lighter !important
}
.fw-normal {
    font-weight: 400 !important
}
.fw-bold {
    font-weight: 500 !important
}
.fw-bolder {
    font-weight: 600 !important
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: #ffa86b;
    border-radius: 0.7rem;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #ff6900;
}
body, div, main, ol, pre, span, ul {
    scrollbar-width: thin;
    scrollbar-color: #ffa86b transparent
}
@font-face {
    font-family: 'Avenir Regular';
    src: url('AvenirRegular.ttf') format('truetype');
}
body {
    font-family: 'Avenir Regular';
}