.login {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.login__wrapper {
  display: flex;
  flex-direction: row;
  margin: 0;
}

/* .login__left_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #212121;
} */
.login__left_part {
  background-color: #212121;
  color: white;
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
  background-image: url('../icons/sidelogo.svg'), url('../icons/bottomlogo.svg');
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;

  @media (max-width: 768px) {
    padding: 20px;
    flex: none;
    width: 100%;
    height: auto;
  }
}

/* .login__right_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 15px;
} */
.login__right_part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 15px;
  background-image: url('../icons/formimage.svg');
  background-size: auto;
  background-position: center;
  box-shadow: -1px 0px 7px 0px rgb(199 190 199);
  z-index: 30;

  @media (max-width: 768px) {
    height: auto;
    padding: 20px;
    background-size: contain;
  }
}

.login__form {
  margin: 0 8% 0 8%;
}

/* ############### */
/* #### TITLE #### */
/* ############### */

/* .login__form_title {
    align-self: center;
    font-weight: bold;
    margin-bottom: 20px;
} */
.login__form_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  margin-left: 73px;

  @media (max-width: 768px) {
    font-size: 24px;
  }
}

/* ############## */
/* #### LOGO #### */
/* ############## */
.login__logo {
  max-width: 35%
}

.login__logo img {
  height: auto;
  max-width: 100%;
}

/* ############### */
/* #### FIELD #### */
/* ############### */
.login__form_field_container {
  margin-bottom: 20px;
}

.login__form_field_container label {
  color: #737373;
}

.login__form_input {
  display: flex;
  align-items: center;
}

.login__form_input * {
  margin-right: 5px;
}

.login__form_input *:last-child {
  margin-right: 0;
}

.login__show_password {
  cursor: pointer;
  right: 20px
}

.login__show_password--disabled {
  color: lightgrey;
}

/* ################ */
/* #### ACTION #### */
/* ################ */

.login__action_container {
  display: flex;
  justify-content: space-between;
}

/* .login__submit_button {
    width: 40%;
    font-weight: bold;
} */

/* ################# */
/* #### CONTACT #### */
/* ################# */

.login__contact_container {
  align-self: center;
}

.btn-primary {
  background-color: #FF6600 !important;
  border-color: #FF6600;
  color: #FCFEFF;
  border-radius: 25px;
  padding: 12px;
  width: -webkit-fill-available;

  @media (max-width: 768px) {
    width: 100%;
    padding: 10px;
  }
}

.welcome-description {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 10px;
  width: 73%;
  line-height: 1.1;

  @media (max-width: 768px) {
    font-size: 1.2rem;
    width: 100%;
  }
}

.details-text {
  font-size: 16px;
  width: 80%;
  line-height: 1.4;

  @media (max-width: 768px) {
    font-size: 14px;
    width: 100%;
  }
}

.form-control {
  border-radius: 25px;
  padding: 12px;
}

.login__sso_button {
  margin-top: 10px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 25px;
  padding: 12px;
  width: -webkit-fill-available;
}

.btn-sso {
  background-color: #FFFFFF;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 25px;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}

.footer1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 4px;
  padding: 0 20px;
  font-size: 11px;
  color: #666;
  left: 0;
}