/* DonkeyHost webmail — Elastic LOGIN polish (mac-mod-cc, FE).
   Scope: login screen only. Pure CSS override, NO Roundcube core edits.
   Apply via a custom skin extending `elastic`, or appended to the skin's
   user CSS — whichever is cleanest on this install. Selectors are
   best-effort vs the live Elastic DOM; nudge if any don't land. */

/* 1) LOGIN button -> DonkeyHost teal (was generic blue) */
#rcmloginsubmit,
#login-form .btn-primary,
button.btn.btn-primary {
  background-color: #00a884 !important;
  border-color:     #00a884 !important;
}
#rcmloginsubmit:hover,
#login-form .btn-primary:hover,
button.btn.btn-primary:hover {
  background-color: #009476 !important;
  border-color:     #009476 !important;
}

/* 2) Subtitle above the form. If ::before on #login-form doesn't land in
   this Elastic build, move the content line onto whatever wraps the form. */
#login-form::before {
  content: "Sign in with your email address";
  display: block;
  text-align: center;
  color: #9ca6be;
  font-size: 13px;
  font-weight: 400;
  margin: 2px 0 18px;
}

/* 3) Keep the logo a sensible size on the login (the new lockup already
   bakes in the "Webmail Portal" title). Tune max-height to taste. */
#layout .logo,
#login-form .logo,
img.logo {
  max-height: 70px !important;
  width: auto !important;
}
