/* 1. Makes the error text red */
label.error {
    color: #ff0000;       /* Bright Red */
    font-size: 13px;      /* Small readable font */
    margin-top: 5px;      /* Space between input and error */
    display: block;       /* Ensures it sits below the input */
    font-weight: 400;     /* Normal weight */
}

/* 2. (Optional) Makes the input border red when there is an error */
/* input.error, 
select.error {
    border: 1px solid #ff0000 !important;
} */


.message {
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none; /* hidden by default */
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}