

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 480px) {

    .control-label{
        font-size:14px !important;
    }

    .password-section .fa-eye {
        right: 62px !important; /* Adjust this value to control the icon's position */
    }

    .password-section .fa-eye-slash {
 
        right: 62px !important; /* Adjust this value to control the icon's position */
    }


    form {
        margin-top:40px !important;
    }

    #txtUser {
        width:80% !important;
        font-size:18px !important;
    }

    #txtsenha {
        font-size: 18px !important;
        width: 80% !important;
    }



    

    #NomeSistema {
        height: 0px;
    }

    label {
        font-size: 18px !important;
    }

    input {
        width: 80% !important;
        height: 35px !important;
        font-size: 16px !important;
    }

    .card-container {
        width: 320px !important;
        height: 480px !important;
        padding: 10px !important;
        padding-top: 40px !important;
        margin-top: 0px !important;
    }

    #bntlogin {
        width: 130px !important;
        height: 50px !important;
    }

    .content-header {
        padding: 0px !important;
        height:10px;
    }



    .profile-img-card {
        width: 70px !important;
        height: 70px !important;
        margin:auto !important;
    }

    .content {
        padding:1px !important;
    }
}


.form-control {
    border: 1px solid #D6D6D6;
    border-radius: 0;
    box-shadow: none;
    height: 40px;
    padding: 6px 15px;
}

body,
.label {
    color:steelblue;
}

.sign-in-htm,
.sign-up-htm {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.sign-in,
.sign-up,
.group .check {
    display: none;
}

.tab,
.group .label,
.group .button {
    text-transform: uppercase;
}

.tab {
    font-size: 30px;
    margin-right: 15px;
    padding-bottom: 5px;
    margin: 0 15px 10px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
}


.sign-in:checked + .tab,
.sign-up:checked + .tab {
    color: blue;
    border-color: #1161ee;
}

.card-container.card {
    width: 380px;
    padding: 20px 20px;
}


h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}


    /* TABS */

    h2.inactive {
        color: #cccccc;
    }

    h2.active {
        color: #0d0d0d;
        border-bottom: 2px solid #5fbae9;
    }



/*
    * Card component
    */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 10px auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/*
    * Form styles
    */
.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
    border-radius: 10px;
}




/* 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;
}



/* FORM TYPOGRAPHY*/

#bntlogin {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 40px !important;
}

    button {
        background-color: #39ace7;
    }

    button {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }



/* password toggle start */
.password-section {
    position: relative;
    display: inline-block;
}

    .password-section .fa-eye {
        position: absolute;
        top: 57%;
        right: 22px; /* Adjust this value to control the icon's position */
        transform: translateY(-50%);
        cursor: pointer;
    }

    .password-section .fa-eye-slash {
        position: absolute;
        top: 57%;
        right: 22px; /* Adjust this value to control the icon's position */
        transform: translateY(-50%);
        cursor: pointer;
    }

/* password toggle end */
