body {
    background: url('../../assets/images/bgImageLogin.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    background-color: #0F0B1E;
    /* fundo escuro roxo */
}

.login-container {
    background: rgba(15, 11, 30, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 0 40px rgba(108, 59, 255, 0.25);
}

.form-control {
    border-radius: 12px;
    border: none;
    padding: 12px 15px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(108, 59, 255, 0.35);
    border: none;
}

/* BOTÃO TASKGO */
.login-btn {
    background: linear-gradient(135deg, #6C3BFF, #4B1FD1);
    color: white;
    font-weight: bold;
    border-radius: 12px;
    padding: 12px;
    border: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, #7C4DFF, #5B2BEB);
    box-shadow: 0 0 20px rgba(108, 59, 255, 0.6);
    transform: translateY(-2px);
    color: white;
}

.avatar {
    width: 100%;
    margin-bottom: 20px;
}

/* RODAPÉ */
.logo-footer {
    position: absolute;
    bottom: 40px;
    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: #b9b5d6;
}

/* ÍCONE VOLTAR */
.back-icon {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #6C3BFF;
    display: inline-block;
    transition: 0.3s;
}

.back-icon:hover {
    color: #9F7CFF;
}