/* Inject your company name as text right above the login fields */
.login-form::before {
    content: "Tamilnadu Power Discom"; /* Replace this with your actual text */
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;          /* Text size */
    font-weight: 700;            /* Make it Bold */
    color: #ffffff;              /* Text color (change to #000000 if using a light theme) */
    text-align: center;          /* Centered text */
    margin-bottom: 2rem;         /* Space between text and username input box */
    letter-spacing: -0.025em;
}
