@CHARSET "ISO-8859-1";
/* RTL support */
.rtl .contentAreaStyle {
    direction: rtl;
}

.rtl .topicStyle,
.rtl .labelStyle,
.rtl .messagebox {
    text-align: right;
}

/* Keep email/username input readable (LTR) */
.rtl input,
.rtl textarea {
    direction: ltr;
    text-align: left;
}

/* Buttons next to each other */
#passwordResetForm .buttonRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap; /* wraps on small screens */
    align-items: center;
}

/* Make them share the row instead of stacking */
#passwordResetForm .buttonRow .buttonStyle {
    width: auto !important;  /* override width:100% if set elsewhere */
    flex: 1 1 180px;         /* equal widths, minimum size */
}

/* Optional: in RTL, reverse order */
#passwordResetForm.rtl .buttonRow {
    flex-direction: row-reverse;
}