html,
body {
  height: 100%;
  margin: 0;
  background-color: #f7f7f7;
}

body {
  font-family: "Schibsted Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.turn-auth-root {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  background: #f5f3ef;
}
.turn-auth-root .turn-auth-card {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
  height: calc(100vh - 30px);
}
.turn-auth-root .turn-auth-card .turn-auth-media {
  width: 45%;
  height: 100%;
}
.turn-auth-root .turn-auth-card .turn-auth-media .turn-auth-mediaImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.turn-auth-root .turn-auth-card .turn-auth-panel {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 48px 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-wrapper
  .alert-error {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #f54752;
  color: #f54752;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 50px;
}

.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 24px;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-title {
  color: #2d000f;
  font-family: "Hedvig Letters Serif";
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.5px;
  margin: 0 0 32px;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-btn {
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #ffffff;
  font-family: "Schibsted Grotesk";
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-btn.google-btn {
  background: #2d000f;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-btn.primary-btn {
  background: #8848f0;
  margin-top: 16px;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-btn.primary-btn:hover {
  background: #6c37c2;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-btn.disabled {
  background: #e2e1dd;
  pointer-events: none;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .google-btn-container {
  position: relative;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge {
  position: absolute;
  display: inline-block;
  padding: 10px 20px 10px 24px;
  background: #ffffff;
  border: 2px dashed #d6d3d1;
  border-radius: 4px;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  color: #493d41;
  font-size: 12px;
  font-style: italic;
  line-height: 12px;
  letter-spacing: -0.12px;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge
  .badge-triangle {
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  left: -5px;
  position: absolute;
  top: 50%;
  background: #fff;
  z-index: 1;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge
  .badge-triangle:before,
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge
  .badge-triangle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge
  .badge-triangle:before {
  right: 0;
  border-top: 2px dashed #d6d3d1;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .google-btn-container
  .last-used-badge
  .badge-triangle:after {
  bottom: 0;
  border-left: 2px dashed #d6d3d1;
}
.turn-auth-root .turn-auth-card .turn-auth-panel .turn-auth-divider {
  text-align: center;
  margin: 24px 0;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-divider
  .divider-text {
  position: relative;
  color: #a0a0a0;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-divider
  .divider-text:before,
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-divider
  .divider-text:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-divider
  .divider-text:before {
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(207, 207, 207));
  left: -30px;
}
.turn-auth-root
  .turn-auth-card
  .turn-auth-panel
  .turn-auth-divider
  .divider-text:after {
  background: linear-gradient(to right, rgb(207, 207, 207), rgb(255, 255, 255));
  right: -30px;
}

::-moz-placeholder {
  color: #d1c9cb;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

::placeholder {
  color: #d1c9cb;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.turn-auth-input-group {
  margin-bottom: 16px;
  position: relative;
}

.turn-auth-input-group.active {
  border-color: #2d000f;
}

.turn-auth-input-group .turn-auth-input {
  padding: 16px 48px;
  color: #2d000f;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  border: 1px solid #d1c9cb;
  outline: none;
  background: transparent;
  flex: 1;
  width: 100%;
}

.turn-auth-input-group .turn-auth-input:focus {
  border-color: #2d000f;
}

.turn-auth-input-group img {
  opacity: 0.3;
}

.turn-auth-input-group .eye-icon img {
  opacity: 0.5;
}

.turn-auth-input-group.active img {
  opacity: 1;
}

.turn-auth-input-group .start-icon {
  position: absolute;
  top: 16px;
  left: 20px;
}

.turn-auth-input-group .end-icon {
  position: absolute;
  top: 16px;
  right: 20px;
}

.turn-auth-input-group .status-icon {
  display: none;
}
.turn-auth-input-group.success {
  border: 2px solid #75ac42;
}
.turn-auth-input-group.success img {
  opacity: 1;
}
.turn-auth-input-group.success .status-icon {
  display: block;
}
.turn-auth-input-group.success .status-icon .error-icon {
  display: none;
}
.turn-auth-input-group.error {
  border: 2px solid #f54752;
}
.turn-auth-input-group.error img {
  opacity: 1;
}
.turn-auth-input-group.error .status-icon {
  display: block;
}
.turn-auth-input-group.error .status-icon .success-icon {
  display: none;
}
.turn-auth-input-group.error + .auth-error-message {
  display: block;
}
.turn-auth-input-group + .auth-error-message {
  display: none;
}
.turn-auth-input-group .eye-icon {
  cursor: pointer;
}
.turn-auth-input-group .eye-icon .visible-off {
  display: none;
}
.turn-auth-input-group.password-visible .eye-icon .visible-on {
  display: none;
}
.turn-auth-input-group.password-visible .eye-icon .visible-off {
  display: block;
}

.forgot-link {
  color: #888082;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 16px;
}

.auth-error-message {
  color: #f54752;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  text-align: right;
}

/* Banner above “Continue with Google” (server + client sign-in errors) */
.signin-validation-banner {
  text-align: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.signin-validation-banner.auth-error-message {
  text-align: center;
}
.signin-validation-banner--success {
  color: #75ac42;
}

/*
 * Field-level validation (red/green borders, icons, text under email/password): disabled.
 * Remove class auth-no-field-validation from the sign-in <form> to turn it back on.
 */
.auth-no-field-validation #email-error,
.auth-no-field-validation #password-error {
  display: none !important;
}
.auth-no-field-validation .turn-auth-input-group.success,
.auth-no-field-validation .turn-auth-input-group.error {
  border: 1px solid #d1c9cb;
}
.auth-no-field-validation .turn-auth-input-group.success img,
.auth-no-field-validation .turn-auth-input-group.error img {
  opacity: 0.5;
}
.auth-no-field-validation .turn-auth-input-group.success .status-icon,
.auth-no-field-validation .turn-auth-input-group.error .status-icon {
  display: none !important;
}

.signup-link {
  margin-top: 32px;
  text-align: center;
  color: #888082;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
.signup-link a {
  color: #2d000f;
  text-decoration: none;
}

.turn-auth-footer {
  color: #888082;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  max-width: 290px;
  margin: 20px auto 0;
}
.turn-auth-footer a {
  color: #2d000f;
} /*# sourceMappingURL=signin.css.map */
