﻿
@font-face {
    font-family: 'Ubuntu-L';
    src: url('../fonts/Ubuntu-L.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Ubuntu-L, sans-serif;
    margin: 0px;
    padding: 0px;
}

html, body {
    width: 100%;
    height: 100vh;
    background-color: #fdfdfd;
}

.login-section {
    display: flex;
    justify-content: center;
}

.login-container {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10em 2.5em 5em 2.5em;
}

.login-principal {
    border-radius: 15px;
    -moz-border-radius: 15px 15px 0px 0px;
    -webkit-border-radius: 15px 15px 0px 0px;
    width: 235px;
    height: 280px;
    display: block;
    margin: 0 auto;
}

.field {
    position: relative;
    float: left;
}


.form-login {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 33px;
    border: none;
    padding: 5px 7px 5px 15px;
    background: transparent;
    color: #000000;
    border: 1.1px solid #7f878d;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 8px;
}

    .form-control:focus, .form-control:focus + .fa {
        border-color: #78e5e2;
        color: #000000;
        background-color: transparent;
    }


.error-text {
    color: #ed1c24;
    font-size: 12px;
}

.btn-login {
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #7f878d;
    cursor: pointer;
    font-size: 16px;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-family: Ubuntu-L;
    text-transform: uppercase;
    box-shadow: 0px 1px 7px gray;
    margin-bottom: 5%;
}

.login-img {
    width: 260px;
    margin-bottom: 10%;
}
.w100 {
    width: 100%;
}


.checks {
    border: 1px solid #bf0e65;
}
/*Change login*/

.kz-icon-security {
    font-family: kz-icon;
    font-size: 35px;
    color: #c64050;
    cursor: pointer;
}

.kz-icon-security:link,
.kz-icon-security:hover {
    color: #c64050;
}
.i-active {
    color: #c64050 !important;
}
.kz-line {
    width: 2px;
    height: 50px;
    border-radius: 5px;
    background-color: #C64050;
}

.form-icon {
    margin-bottom: 15px;
    padding: 10px 35px;
    display: flex;
    justify-content: space-between;
}


.text-center {
    text-align: center;
}


@keyframes login-animation {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        opacity: 1.0;
        transform: scale(1);
    }
}
.rfid-container {
    display: none;
}
.user-container, .rfid-container {
    opacity: 1.0;
    animation-name: login-animation;
    animation-duration: 0.6s;
}
.rfid-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    border-top-color: #c64050;
    border-right-color: #c64050;
    border-bottom-color: #fff;
    border-left-color: #fff;
    display: block;
    margin: 0 auto;
    transform: rotate(-45deg);
    animation-name: rfid-load;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes rfid-load {
    0%{
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(675deg);
    }
}
