/* Gradient background inspired by WhatsApp's official colors */
#auth {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #e5f5ea 100%) !important;
    background-attachment: fixed !important; /* Optional: makes gradient consistent on scroll */
}

/* This will change the color of login button*/
.btn-primary {
    background: #25D366 !important;  /* WhatsApp green */
}

/* This will change the color of login button when we hover mouse*/
.btn-primary:hover {
    background: #128C7E !important;  /* Darker WhatsApp green */
}

/* This will change the color of login button text*/
.btn-primary {
    color: #ffffff !important;
}