/* Add styles for the in-page message container */
#messageContainer {
    width: 100%;
    margin-bottom: 15px;
    display: none;
}

.message {
    padding: 15px;
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.message.success {
    background-color: rgba(76, 175, 80, 0.8);
    color: white;
}

.message.error {
    background-color: rgba(244, 67, 54, 0.8);
    color: white;
}

.message.loading {
    background-color: rgba(33, 150, 243, 0.8);
    color: white;
}

.close-message {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-heading {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-heading h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}
