        body { background: #000; display: flex; align-items: center; justify-content: center; height: 100vh; }
        .login-card { background: #111; border: 2px solid #d4af37; padding: 40px; width: 100%; max-width: 400px; text-align: center; border-radius: 10px; }
        input { width: 100%; padding: 12px; margin: 10px 0; background: #222; border: 1px solid #444; color: #fff; }
        .login-btn { width: 100%; padding: 12px; background: #d4af37; color: #000; font-weight: bold; border: none; cursor: pointer; margin-top: 10px; }
        .error-msg { color: #ff4d4d; margin-top: 10px; font-size: 0.9rem; }

     
        body { background: #000; display: flex; align-items: center; justify-content: center; height: 100vh; }
        .login-card { background: #111; border: 2px solid #d4af37; padding: 40px; width: 100%; max-width: 400px; text-align: center; border-radius: 10px; }
        input { width: 100%; padding: 12px; margin: 10px 0; background: #222; border: 1px solid #444; color: #fff; }
        .login-btn { width: 100%; padding: 12px; background: #d4af37; color: #000; font-weight: bold; border: none; cursor: pointer; margin-top: 10px; }
        .error-msg { color: #ff4d4d; margin-top: 10px; font-size: 0.9rem; }
        .links { margin-top: 20px; font-size: 0.9rem; display: flex; justify-content: space-between; }
        .links a { color: #888; text-decoration: none; }
        .links a:hover { color: #d4af37; }

        /* --- TOAST NOTIFICATION STYLES (Mobile Friendly) --- */
#toast-box {
    visibility: hidden;
    min-width: 280px; /* Slightly wider for readability */
    max-width: 90%;   /* Prevents it from going off-screen on phones */
    background-color: #222; /* Darker background */
    color: #fff;
    text-align: center;
    border-radius: 8px; /* Softer corners */
    padding: 15px 20px;
    position: fixed;
    z-index: 9999; /* Ensures it is on top of everything */
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.5); /* Stronger shadow */
    opacity: 0;
    transition: opacity 0.4s ease-in-out, bottom 0.4s ease-in-out;
    white-space: nowrap; /* Keeps text on one line if possible */
}

/* Mobile Specific Adjustments */
@media (max-width: 600px) {
    #toast-box {
        width: 85%;       /* Take up most of the screen width */
        bottom: 20px;     /* Sit slightly lower */
        font-size: 14px;  /* Slightly smaller text */
        white-space: normal; /* Allow text to wrap on small phones */
    }
}

#toast-box.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Moves up slightly when appearing */
}

/* Colors for Success and Error */
#toast-box.success { 
    border-left: 6px solid #2ecc71; /* Green Bar */
} 

#toast-box.error { 
    border-left: 6px solid #e74c3c; /* Red Bar */
}