* {
  line-height: normal;
}

body {
  overflow: auto;
}

.container {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero {
  background-image: linear-gradient(
      0deg,
      rgba(55, 55, 55, 0.7),
      rgba(55, 55, 55, 0.7)
    ),
    url("https://assets.gojust.com/images/ship.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 450px;
  margin-bottom: var(--spacing--44);
}

.hero-title {
  font-weight: bold;
  font-size: 5rem;
  /* Ukraine colors */
  /* color: #ffd500; */
  color: var(--theme-refresh-brand-orange);
  margin-bottom: var(--spacing--44);
}

.hero-paragraph {
  font-size: var(--font-size--2-8);
  color: var(--theme-refresh-text-white);
}

.lines-container {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

@media only screen and (max-width: 1400px) {
  .swirly-lines {
    width: 200%;
    position: absolute;
    right: 0;
    top: 25%;
  }
}

.swirly-lines {
  width: 200%;
  position: absolute;
  right: 0;
  top: 24%;
}

@media only screen and (min-width: 1800px) {
  .swirly-lines {
    width: 200%;
    position: absolute;
    right: 0;
    top: 17%;
  }
}

@media only screen and (min-width: 2000px) {
  .swirly-lines {
    width: 200%;
    position: absolute;
    right: 0;
    top: 15%;
  }
}

@media only screen and (min-width: 2350px) {
  .swirly-lines {
    width: 200%;
    position: absolute;
    right: 0;
    top: 8%;
  }
}

.content {
  display: flex;
  justify-content: center;
  padding: var(--spacing--44);
  position: relative;
}

.content-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.header {
  width: 640px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14.4rem;
}

.signup-login {
  display: flex;
  align-items: center;
}

.signup-login a:not(:last-child) {
  margin-right: var(--spacing--12);
}

.logo-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  width: 180px;
  --logo-color: black;
  margin-bottom: 10rem;
}

.logo svg {
  width: 180px;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 640px;
  background: #fff;
}

.form-header {
  border-left: 1px solid var(--theme-refresh-border-grey-subtle);
  border-right: 1px solid var(--theme-refresh-border-grey-subtle);
  border-bottom: 1px solid var(--theme-refresh-border-grey-subtle);
  height: 80px;
}

.centered-form-header-text {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: var(--spacing--8);
}

.form-footer {
  width: 100%;
  margin-top: var(--spacing--32);
}

.form-brand-blue-border {
  height: 4px;
  background-color: var(--theme-refresh-brand-blue);
}

.form {
  border-left: 1px solid var(--theme-refresh-border-grey-subtle);
  border-right: 1px solid var(--theme-refresh-border-grey-subtle);
  border-bottom: 1px solid var(--theme-refresh-border-grey-subtle);
  min-height: 348px;
}

.form-relative-input-container {
  position: relative;
}

.form-hoverbox {
  position: absolute;
  right: 0;
  bottom: 100%;
  transition: opacity 0.1s;
  visibility: hidden;
  opacity: 0;
}

.form-hoverbox.visible {
  visibility: visible;
  opacity: 1;
}

a {
  font-size: var(--font-size--1-4);
  transition: color 0.1s;
  text-decoration: none;
  color: var(--theme-refresh-interactive-blue);
}

.footer-text {
  font-size: var(--font-size--1-4);
  color: var(--theme-refresh-text-secondary);
}

a.black {
  color: var(--theme-refresh-text-primary);
}

a:hover:not(.active) {
  color: var(--theme-refresh-ui-elements-product-blue-dark);
}

label {
  display: block;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: var(--spacing--4);
}

.asterisk {
  color: var(--theme-refresh-danger);
}

.form-element {
  margin-bottom: var(--spacing--12);
}

.form-element.error .error-label {
  color: var(--theme-refresh-danger);
}

.form-element.error input {
  border-color: var(--theme-refresh-danger);
}

.form-element.error .checkbox-checkmark {
  border-color: var(--theme-refresh-danger) !important;
}

.form-element.column {
  display: flex;
  flex-direction: column;
}

.form-element.read-only {
  opacity: 0.4;
}

.form-element.read-only input:focus {
  border-color: var(--theme-refresh-border-grey-subtle);
}

.error-label {
  margin-top: var(--spacing--4);
  font-size: 1rem;
  letter-spacing: 1px;
}

.error-label:empty:before {
  content: "\200b";
}

.logo-alert {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.alert {
  position: absolute;
  background-color: transparent;
  top: var(--spacing--80);
}

.alert p {
  margin: 0;
}

.alert.alert-success {
  color: var(--theme-refresh-text-primary);
}

.alert.alert-warning {
  color: var(--theme-refresh-danger);
}

.alert.alert-error {
  color: var(--theme-refresh-danger);
}

.alert.alert-info {
  color: var(--theme-refresh-text-primary);
}

.flag-icon-big {
  font-size: 1.5em;
}

.error-form {
  padding: var(--spacing--80);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-form > p {
  width: 280px;
}

.error-form-buttons {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing--36);
}

.account-disabled-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--spacing--80) 18rem;
}

.account-disabled-text {
  font-size: var(--font-size--1-4);
  margin-bottom: var(--spacing--32);
  color: #333333;
}
