/**
 * @file
 * Easing settings.
 *
 * @package Settings.
 */
/* Ease in. */
/* Ease out. */
/* Ease in-out. */
/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
.o-user-login {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  word-break: break-word;
  border-radius: 1.6rem;
  overflow: hidden;
}
.o-user-login__container {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  gap: 18px;
}
.o-user-login__logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 720px) {
  .o-user-login__logo {
    margin-bottom: 2.6rem;
  }
}
.o-user-login__form {
  width: 100%;
  max-width: 36rem;
  flex: 1 1 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 720px) {
  .o-user-login__form {
    padding: 2rem;
  }
}
.o-user-login__form h1 {
  margin: 1rem;
  font-size: 1.8rem;
  color: #171725;
}
.o-user-login__form form {
  margin: 0;
}
.o-user-login__form form .form-actions {
  margin: 0;
}
.o-user-login__form form .form-actions button {
  width: 100%;
  justify-content: center;
  background-color: #0062FF;
  border-color: #0062FF;
}
.o-user-login__form__or {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.o-user-login__form__or span {
  display: inline-block;
  z-index: 2;
  position: relative;
  padding: 0 1rem;
  font-weight: 600;
  color: #92929D;
}
.o-user-login__form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.o-user-login__content {
  flex: 1 1 auto;
  background-image: linear-gradient(to right, #1b2330 0%, #0d1118 100%);
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  color: #ffffff;
}
@media screen and (min-width: 720px) {
  .o-user-login__content {
    display: flex;
    padding: 4rem 8rem;
  }
}
.o-user-login__content h1,
.o-user-login__content h2,
.o-user-login__content h3 {
  color: inherit;
}
.o-user-login__content p {
  font-size: 1.6rem;
}

/*# sourceMappingURL=login.css.map */