* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  --webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Raleway", sans-serif;
  color: #E84D38;
}

.auth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(/wazo_ui.plugins.authentication.plugin/img/background-login.jpg) center center / cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1; 
}

.form-field {
  position: absolute;
  right: 0;
  top: 0;
  width: 40vw;
}

.login {
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 12px 0 0 12px;
}

.logo {
  display: block;
  width: 242px;
  height: 153px;
  margin-bottom: 68px;
}

.separator {
  width: 290px;
  height: 1px;
  background-color: #CCCCCC;
  margin-bottom: 33px;
}

p {
  color: #999999;
}

.title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 33px;
  color: #E84D38;
}

form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.error-message {
  color: #FFFFFF;
  background-color: #E84D38;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 8px;
}

.form-input {
  font-size: 14px;
  width: 100%;
  height: 42px;
  border: 1px solid #999999;
  border-radius: 8px;
  padding: 12px 24px
}

.form-input::placeholder {
  font-weight: 600;
  line-height: 19px;
  color: #999999;
}

.btn-submit {
  width: 173px;
  height: 32px;
  background-color: #E84D38;
  color: #FFFFFF;
  border-radius: 15px;
  border: none;
  display: flex;
  place-self: center;
  align-items: center;
  place-content: center;
}

.btn-submit:disabled {
  background-color: #EBEBEB;
}

.password-options {
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline #E84D38;
  color: #E84D38;

  margin-top: 20px;
  margin-bottom: 5px;
}

.input-lg {
  display: none !important;
  width: 0;
  height: 0;
}

.ghost {
  background-color: transparent;
  border: none;
}

.select2-selection {
  padding-top: 10px !important;
  text-transform: capitalize;
}

@media (max-width: 1024px) {
  .form-field {
    width: 100vw;
  }
}