body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('../../assets/images/fundo.jpg') center center ;
    background-size: contain; /* ou 'cover' se quiser ocupar a tela inteira mesmo distorcendo um pouco */
     
    background-color: #000000;
    font-family: Arial, sans-serif;
}




.login-container {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 40px;
    color: white;
}

.form-control {
    border-radius: 10px;
}

.login-btn {
    background-color: #000000; /* preto */
    color: white;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #222222; /* preto mais escuro visualmente */
    color: white;
}



.back-icon {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #000000; /* preto */
    display: inline-block;
}

.back-icon:hover {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #222222; /* preto mais escuro visualmente */
    display: inline-block;
}




.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.logo-footer {
    position: absolute;
    bottom: 40px;
    /* sobe a logo sem encostar demais */
    width: 100%;
    text-align: center;
}

.logo-footer img {
    height: 30px;
}

.small-text {
    font-size: 0.8rem;
}

.footer-version {
    font-size: 0.75rem;
    margin-top: 10px;
    color: #ccc;
}

.back-icon {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #58B895;
    display: inline-block;
}