@import url('global.fonts.css');
body,
input,
button,
select {
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
}

a {
  color: #008edf;
}

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  line-height: 20px;
}

.logo {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  max-width: 210px;
  width: 100%;
}

.wrapper {
  max-width: 920px;
  width: 100%;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
}

.form {
  max-width: 440px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 32px;
}

.input {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 4px;
  border: 1px solid #e3e3e6;
  padding: 12px 16px;
  font-size: inherit;
  line-height: 22px;
  color: #161230;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-writing-mode: horizontal-tb !important;
  writing-mode: horizontal-tb !important;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}

.input.has-error {
  border-color: #eb3d51;
}

.label {
  display: block;
  font-size: 0.875rem;
  color: #161230;
  margin-bottom: 8px;
  line-height: 20px;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}

.input-container {
  position: relative;
}

.eye {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  right: 12px;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  filter: invert(85%) sepia(9%) saturate(72%) hue-rotate(202deg) brightness(89%)
    contrast(93%);
}

/* Disable Microsoft Edge built-in reveal icon */
input[type='password']::-ms-reveal {
  display: none;
}

.button {
  display: block;
  width: 100%;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #008edf;
  color: #fff;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font: 400 13.3333px;
  padding: 12px 32px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
}

[data-branding='genial'] .button{
  background: #1e1741;
}

.heading {
  font-size: 1.75rem;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}

.password-hint {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
  display: block;
}

.password-hint.has-error {
  color: #eb3d51;
}

.error-message {
  color: #eb3d51;
  font-size: 0.875rem;
  margin-bottom: 16px;
  margin-top: -8px;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}

.success-message {
  font-size: 0.875rem;
  color: #161230;
  margin-top: 16px;
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
}

.privacy-statement {
  margin: 0;
  padding: 0;
  font-size: 14px;
  margin-top: 0.75rem;
  color: #555555;
  text-align: center;
}