﻿html {
    margin: 0px;
    height: auto;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0px;
    min-height: 100vh;
}

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;
}


.footer {
    font-size: 7px;
    color: white;
    /* text-align: center;
    position: fixed;
    bottom: 30px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passReminder {
    font-size: 12px;
    text-align: center;
    /* width: 30%; */
}

#passReminderLink {
    color: white !important;
    font-weight: bolder;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    /*  margin-top: 10px;
    min-height: 96%;*/
}

.login-container {
    /*  padding-bottom: 15px !important; */
    width: auto;
    max-width: 600px;
    /* 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; */
    background-color: transparent;
    /*background: #fceabb;*/ /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f8b500, #fceabb); /* Chrome 10-25, Safari 5.1-6 */
    /*background: linear-gradient(to right, #f8b500, #fceabb);*/ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#formFooter {
    font-family: "Poppins", sans-serif;
    color: white;
    /*background-color: #D4AF37;*/
    padding: 3px;
    text-align: center;
}

.formControlExt {
    font-family: "Poppins", sans-serif;
    color: red;
    background-color: white;
    border: 1px solid black;
    border-left: none;
    background-position: center;
    padding: 29px 20px 19px 20px;
    margin-left: -10px;
    cursor: pointer;
    background-size: 108%;
    background-repeat: no-repeat;
    background-image: url('../../images/iconarrow.png')
}

.footerResetCookieExt {
    font-family: "Poppins", sans-serif;
    background-color: transparent;
    border: 1px solid white;
    width: 47px;
    background-position: center;
    padding: 29px 20px 19px 20px;
    margin-left: -10px;
    cursor: pointer;
    background-size: 108%;
    background-repeat: no-repeat;
    background-image: url('../../images/backs/switchIco.png')
}

#reset-cookie-form {
    /* margin-bottom: 50px; */
    font-size: medium;
}
/* TABS */
h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

.loginOne {
    /* width: 95% !important; */
    margin-right: 0px !important;
    border: 1px solid black !important;
    text-align: left !important;
    /* padding: 6px 6px !important; */
    padding: 2px .5rem 2px .25rem !important;
    border-radius: 0px;
}

.loginTwo {
    color: white !important;
    padding-bottom: 10px !important;
}

.passwordOne {
    margin-right: 0px !important;
    border: 1px solid black !important;
    text-align: left !important;
    /* padding: 6px 6px !important; */
    padding: 2px .5rem 2px .25rem !important;
    border-radius: 0px;
}

.passwordTwo {
    margin-right: 0px !important;
    border: 1px solid black !important;
    text-align: left !important;
    padding: 2px .5rem 2px .25rem !important;
    border-radius: 0px;
}

#password:focus::placeholder {
    color: transparent;
}

#login:focus::placeholder {
    color: transparent;
}

/* FORM TYPOGRAPHY*/
input[type=button], input[type=submit], input[type=reset] {
    background-color: #50a0e5;
    border: none;
    color: white;
    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);
    margin: 10px 10px 10px 10px;
    -webkit-transition: border 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: #56baed;
    }

    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);
    }

input[type=text], input[type=password] {
    border: none;
    border-bottom: 1px solid #D4AF37;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    /* margin: 5px; */
    width: 95%;
    -webkit-transition: border 0.9s ease-in-out;
    -moz-transition: border 0.9s ease-in-out;
    -ms-transition: border 0.9s ease-in-out;
    -o-transition: border 0.9s ease-in-out;
    transition: border 0.9s ease-in-out;
}

    input[type=text]:focus, input[type=password]:focus {
        background-color: #fff;
        border-bottom: 2px solid #D4AF37;
    }

    input[type=text]: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;
}

.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;
    }

.underlineHover:hover:after {
    width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}

/*
    #icon {
    width: 60%;
}

*/

/*

    @media screen and (-webkit-min-device-pixel-ratio:0) {
    #login-form {
        padding-top: 125px;
    }
}

*/

/*Cookie*/
#cookie-info {
    z-index: 99;
    bottom: 0;
    background: #EEE;
    position: fixed;
    width: 100%;
    display: none;
    margin: 0;
    padding: 15px;
}

    #cookie-info a {
        color: #D66E1A;
        float: right;
        padding-right: 20px;
        text-transform: uppercase;
    }

    #cookie-info p {
        color: #333;
        font-size: 12px;
    }

#cookie-a {
    float: left !important;
    padding-right: 2px !important;
}

#cookie-b {
    float: right !important;
    padding: 15px !important;
}

#close-cookie-info {
    text-decoration: none;
}

.input-group-alternative {
    position: relative;
    width: 100%;
}

    .input-group-alternative .input-icon {
        position: absolute;
        font-size: 20px;
        top: 0;
        right: 0;
        border: none;
        background-color: transparent;
        color: #484747;
    }


.rg-1 {
    row-gap: .25rem;
}

.rg-2 {
    row-gap: .5rem;
}

.rg-3 {
    row-gap: .75rem;
}

.rg-4 {
    row-gap: 1rem;
}

.rg-5 {
    row-gap: 1.25rem;
}

.rg-6 {
    row-gap: 1.5rem;
}


.timeclock-image {
    width: 35%;
}

.timeclock-image-responsive {
    width: 50%;
}

.tcs-image-responsive {
    border-radius: 50%;
    width: 50%
}

@media all and (min-width: 576px) {
    .timeclock-image-responsive,
    .tcs-image-responsive {
        width: 37%;
    }
}

@media all and (min-width: 768px) {
    .timeclock-image-responsive,
    .tcs-image-responsive {
        width: 35%;
    }

    .loginTwo {
        font-size: 24px !important;
    }
}

@media all and (min-width: 992px) {
    .timeclock-image-responsive,
    .tcs-image-responsive {
        width: 32%;
    }
}

@media all and (min-width: 1200px) {
    .timeclock-image-responsive,
    .tcs-image-responsive {
        width: 30%;
    }
}

.center-block {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
}
