*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  background-color: #dddcdb;
  background-image: linear-gradient(to right, #dddcdb, #a8a9aa);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  color: #3C3C3B;
}
p {
  margin-bottom: 10px;
}
.wrapper {
  height: 100vh;
  max-width: 360px;
  padding: 5% 0 0;
  margin: 0 20px;
  background-color: #ffffff;
}
.stijlxpres-logo {
  margin-bottom: 2px;
  widht: 100%;
  padding: 24px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  display: block;
}
.stijlxpres-logo img {
  width: 70%;
  margin: 0 15%;
}
#loginform-wrap {
  background: #fff;
  border: none;
  padding: 40px 24px;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 16px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #3c434a;
  margin-bottom: 6px;
}
.input-wrap {
  display: flex;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-wrap:focus-within {
  border-color: #2271b1;
  box-shadow: 0 0 0 0 #2271b1;
}
.prefix {
  font-size: 13px;
  color: #646970;
  background: #f6f7f7;
  padding: 8px 8px 8px 10px;
  border-right: 1px solid #c3c4c7;
  white-space: nowrap;
  user-select: none;
  line-height: 1.6;
}
input[type="text"] {
  font-family: inherit;
  font-size: 14px;
  border: none;
  outline: none;
  padding: 8px 10px;
  width: 100%;
  color: #2c3338;
  background: transparent;
  line-height: 1.6;
}
input[type="text"]::placeholder {
  color: #a7aaad;
}
.error-msg {
  font-size: 13px;
  color: #d63638;
  margin-top: 6px;
  display: none;
}
#wp-submit {
  display: block;
  width: 100%;
  background: #2271b1;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  border: none;
  border-radius: 3px;
  padding: 0 12px;
  height: 38px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.1s;
}
#wp-submit:hover {
  background: #135e96;
}
#wp-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2271b1;
}
.sites-divider {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e4e7;
}
.sites-label {
  font-size: 13px;
  color: #646970;
  margin-bottom: 8px;
}
.site-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-btn {
  background: transparent;
  border: 1px solid #c3c4c7;
  border-radius: 3px;
  font-family: inherit;
  font-size: 13px;
  color: #2271b1;
  text-align: left;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.1s, border-color 0.1s;
  width: 100%;
}
.site-btn:hover {
  background: #f0f0f1;
  border-color: #2271b1;
  color: #135e96;
}
.login-footer {
  margin-top: 16px;
  width: 100%;
  padding: 0 24px;
}
.login-footer a {
  font-size: 13px;
  color: #3C3C3B;
  text-decoration: none;
  font-weight: 400;
  font-style: italic;
}
.login-footer a:hover {
  color: #135e96;
}
