	/* FORM */
.form-message {
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-flex; /*inline-flex για να ακολουθεί text-align του γονέα*/
    align-items: center;         /* κατακόρυφη στοίχιση */
    justify-content: center;     /* οριζόντια στοίχιση */
    gap: 12px;
    font-size: 26px;
    text-align: center;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-size:26px;
    text-align :center;
}
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-size:26px;
    text-align :center;
}
.form-message .icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-block;     /* για σωστό alignment */
    vertical-align: middle;    /* κεντράρει το icon στο ύψος του text */
    /* ή εναλλακτικά μικρή μετακίνηση */
    transform: translateY(-10px); 
}