* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    font-family: 'Titilium Web', sans-serif;
    background-color: #313131;
    color: black;

}

.config-menu {
    color: white;
}

/* login form */

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

form .text-field {
    border-bottom: 5px solid black;
}

.sair {
    cursor: pointer;
    font-size: 20px;
    color: #313131;
}

.sair:hover {
    transform: scale(1.1);
    transition-duration: 0.3s;
    color: #777777;
}

.main-login-container{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.login-img-side{
    height: 380px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-img-side-login{
    height: 294px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-img-side-login img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px ;
}

.login-img-side img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px ;
}

#login-form {
    background-color: #f2f2f2;
    padding: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 4px 14px 76px -7px rgba(0, 0, 0, 0.77);
    -moz-box-shadow: 4px 14px 76px -7px rgba(0, 0, 0, 0.77);
    box-shadow: 4px 14px 76px -7px rgba(0, 0, 0, 0.77);
    max-width: 310px;
    margin: 200px auto;
}

#login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#login-form input[type="text"],
#login-form input[type="password"] {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

#login-form button {
    width: 90%;
    padding: 10px;
    background-color: #ffed00;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#login-form button:hover {
    background-color: #ffed00;
    transform: scale(1.1);
    transition-duration: 0.8s;
}

.i {
    padding: 500px;
}



/* Container for password show field button position ( eye ) */
.password-container {
    align-items: center;
    
    margin: 30px 0;
}

/* Box and form format fixing */

.password-box{
    border: none;
}

.txt-field {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 2px solid #333; /* Adiciona a borda inferior */
}

.txt-field label {
    position: absolute;
    top: -20px;
    font-size: 14px;
    color: #333;
}

.txt-field input {
    width: 100%;
    padding: 10px 0;
    border: none; /* Remove as bordas */
    border-bottom: 2px solid transparent; /* Adiciona uma borda inferior transparente */
    background: none;
    outline: none;
    color: #333;
    font-size: 16px;
}

.txt-field input:focus {
    border-bottom: 2px solid #333; /* Adiciona a borda inferior ao focar */
}

.password-container input {
    width: 100%;
    padding: 10px 0;
    border: none; 
    border-bottom: 2px solid transparent; 
    background: none;
    outline: none;
    color: #333;
    font-size: 16px;
}

.password-container input:focus {
    border-bottom: 2px solid #333; /* Adiciona a borda inferior ao focar */
}

.password-container .HideBt {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

