/* Common styles for both notifications */
.form-notification {
    margin-top: 20px; /* Separates it from the form */
    padding: 15px;
    border: 2px solid; /* "Squared" look */
    display: none;
    font-family: sans-serif;
}

/* Success state: Green */
#successMsg {
    border-color: #28a745;
    color: #28a745;
    background-color: #f8fff9;
}

/* Error state: Red */
#errorMsg {
    border-color: #dc3545;
    color: #dc3545;
    background-color: #fff8f8;
}