body {
    background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: rgba(35, 35, 35, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.logo-area {
    margin-bottom: 30px;
}

.logo-admin {
    width: 90px;
    margin-bottom: 15px;
}

.logo-area h2 {
    margin: 0;
    font-size: 28px;
    color: #d4af37;
}

.logo-area p {
    color: #aaa;
    margin-top: 8px;
    font-size: 14px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.7;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border-radius: 12px;
    border: 1px solid #444;
    background: #2f2f2f;
    color: white;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #d4af37;
}

.input-group input::placeholder {
    color: #999;
    font-size: 14px;
}

.input-group input::-webkit-input-placeholder {
    color: #999;
}

.input-group input::-moz-placeholder {
    color: #999;
}

.input-group input:-ms-input-placeholder {
    color: #999;
}

.input-group input::-ms-input-placeholder {
    color: #999;
}

.extras-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ccc;
}

.login-box button {
    width: 100%;
    background: #d4af37;
    color: black;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.painel {
    width: 90%;
    max-width: 1200px;
    padding: 40px;
}

.topo-painel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.topo-painel button {
    background: #d4af37;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.card-denuncia {
    background: #2b2b2b;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card-denuncia h3 {
    margin-top: 0;
    color: #d4af37;
}

.card-denuncia p {
    color: #ddd;
}

@media (max-width: 768px) {
    .login-box {
        margin: 20px;
        padding: 30px;
    }

    .topo-painel {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}