/**
 * Copyright (c) 2026. Xtreme.bg Ltd. All rights Reserved
 * login.css is a part of the project XStore.
 * XStore cannot be copied and/or distributed without the express permission of Sand
 */

/** No text selection on the login page - dragging over the fluid canvas used to select the labels */
body, body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/** ...except the actual input fields */
body input, body textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
