/* Change the glow color of the login card */
.login_admin .tw-rounded-2xl {
    border-color: rgba(6, 182, 212, 0.4) !important; /* Changes the border line */
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2) !important; /* Changes the outer glow */
}

/* Change the glow color when someone hovers over the card */
.login_admin .tw-rounded-2xl:hover {
    border-color: rgba(6, 182, 212, 0.6) !important;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3) !important;
}
.login_admin .btn-primary {
    background-color: #004687 !important; /* Your brand primary color */
    border-color: #004687 !important;
}

.login_admin .btn-primary:hover, 
.login_admin .btn-primary:focus {
    background-color: #002f5c !important; /* Darker shade for hover state */
    border-color: #002f5c !important;
}