body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(rgba(46, 125, 50, 0.85), rgba(27, 94, 32, 0.85));
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    animation: fadeIn 1.2s ease-in-out;
}

.login-card h3 {
    color: #2e7d32;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.btn-login {
    background: #2e7d32;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.btn-login:hover {
    background: #1b5e20;
}

.icon-bug {
    font-size: 60px;
    color: #d32f2f;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}