body {
    margin: 0;
    height: 100%;
    width: 100%;
    position: relative;
}

body::before {
    content: '';
    background-image: url('../img/fundoLogin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px); 
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.Login-Form {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    position: relative;

}
.loginH {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.loginH img {
    width: 100px;
}

.Login_name {
    border: 2px solid #333;
    border-radius: 5px;
    margin-bottom: 10px;
    max-width: 300px;
    outline: none;
    width: 100%;
    padding: 15px;

}

.Login_botão {
    background-color: #333;
    border-radius: 5px;
    margin-bottom: 10px;
    color: antiquewhite;
    cursor: pointer;
    max-width: 300px;
    padding: 15px;
    width: 100%;
}

.Login_botão:disabled {
    background-color: #eee;
    color: #aaa;
    cursor: auto;
}

.form-background {
    background-color: rgba(192, 192, 192, 0.8); 
    border-radius: 10px; 
    padding: 50px; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; 
    max-width: 400px; 
    height: 300px;; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    z-index: -1; 
}

a{
    color: white;
    text-decoration: none; 
}

.ai {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none; 
    border-radius: 5px;
    font-weight: bold;
    position: fixed;
    top: 20px; 
    left: 20px; 
    z-index: 1000; 
    display: inline-block; 
    border: none; 
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.ai:hover {
    background-color: #3a813d;
}




footer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

footer .img-container {
    display: flex; 
    background-color: rgba(182, 182, 182, 0.7); 
    border-radius: 10px; 
    padding: 5px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); 
}

footer a {
    margin: 0 12px;
}

footer a img {
    width: auto;
    height: 40px;
    max-width: 100%;
    max-height: 100%;
}

footer a:hover {
    opacity: 0.7;
}
