.welcome-container {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  padding: 120 0 0;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  font: var(--sds-typography-body-font-weight-regular)
    var(--sds-typography-body-size-medium)
    var(--sds-typography-body-font-family);
}

.welcome-title {
  color: #000;
  text-align: center;
  font: 700 56px/1.2 Roboto, sans-serif;
}

.welcome-description {
  color: var(--sds-color-text-default-secondary);
  text-align: center;
  line-height: 22px;
  margin: 28px 0 0;
  width: 506px;
}

.button-container {
  display: flex;
  margin: 47px 0 0;
  width: 251px;
  max-width: 100%;
  align-items: center;
  gap: 16px;
  color: var(--sds-color-text-brand-on-brand);
  white-space: nowrap;
  line-height: 1;
  justify-content: start;
}

.login-button {
  color: white;
  align-self: stretch;
  border-radius: 8px;
  background-color: rgba(44, 44, 44, 1);
  min-width: 240px;
  width: 100%;
  gap: 8px;
  overflow: hidden;
  flex: 1;
  margin: auto 0;
  padding: 12px;
  border: 1px solid rgba(44, 44, 44, 1);
  cursor: pointer;
}

.login-button:hover {
  background-color: #444;
}

.welcome-image {
  aspect-ratio: 2.88;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 8px;
  align-self: stretch;
  box-shadow: 8px -3px 10px 0 rgba(0, 0, 0, 0.12);
}

a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .welcome-container {
    padding: 100px 0 0;
  }

  .welcome-title {
    font-size: 40px;
  }

  .button-container {
    margin: 40px 0 0;
    white-space: initial;
  }

  .welcome-image {
    margin: 40px 0 0;
  }
}

.login-container {
  background-color: #fff;
  padding: 0 0 0 0;
  overflow: hidden;
}

.login-wrapper {
  /* border: 1px solid red; */
  display: flex;
  gap: 20px;
  max-width: 100vw;
}

.image-column {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.login-image {
  aspect-ratio: 0.74;
  object-fit: cover;
  height: 100vh;
  border-radius: 8px 0 0 8px;
  box-shadow: 8px -3px 10px 0 rgba(0, 0, 0, 0.12);
  flex-grow: 1;
}

.form-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 75%;
  margin: 20px 200px;
}

.login-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  justify-content: start;
  margin: auto 0;
}

.login-title {
  align-self: center;
  font-size: 40px;
  color: #000;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.login-form {
  border-radius: 8px;
  background-color: #fff;
  min-width: 320px;
  margin-top: 30px;
  min-height: 327px;
  width: 100%;
  padding: 24px;
  border: 1px solid #d9d9d9;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.input-group + .input-group {
  margin-top: 24px;
}

.input-label {
  color: var(--sds-color-text-default-default);
  line-height: 1.4;
}

.input-field {
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  margin-top: 8px;
  align-items: center;
  /* color: var(--sds-color-text-default-tertiary); */
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  flex: 1;
}

.input-value {
  flex: 1;
  font-size: 16px;
  border: 1px solid #d9d9d9;
  outline: none;
  background: transparent; /* Transparent input field */
  color: #000000; /* White text */
}

.input-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 19px;
  margin: auto 0;
}

.submit-button {
  display: flex;
  margin-top: 24px;
  width: 100%;
}

.forgot-password {
  text-decoration: underline;
  margin-top: 24px;
  color: var(--sds-color-text-default-default);
  line-height: 1.4;
  cursor: pointer;
}

.website-link {
  margin-top: 30px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 991px) {
  .login-container {
    padding-right: 0;
  }

  .login-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .form-column {
    width: 50%;
  }

  .login-title {
    font-size: 40px;
  }

  .login-form {
    padding: 20px 20px;
  }

  .login-image {
    height: 33vh;
    border-radius: 8px 8px 0px 0px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
