/* app/styles/login.css */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
label,
.redirect-link {
  color: var(--muted);
  font-weight: 500;
  line-height: 16px;
}
.login-form {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #ff7143;
  background-color: #fcf8f4;
}
@media (max-width: 1024px) {
  .form-container {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .banner-container {
    flex: 1;
    max-width: 50%;
    flex-shrink: 1;
    height: auto;
  }
}
.login-form-wrapper {
  padding: 1.5em 5em 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.logo {
  margin-bottom: 40px;
  width: 200px;
}
.welcome {
  margin-bottom: 1.2em;
}
.p-field {
  width: 100%;
}
.p-field.p-d-block {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
}
input,
.p-inputtext,
select {
  width: 100%;
  height: 28px;
  padding: 5px 10px;
}
select {
  font-size: 12px !important;
}
.login-form.login-form-wrapper button {
  border-width: 1px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.login-btn {
  padding: .65em 2em;
  margin-top: 2em;
}
.banner-container {
  background-color: var(--dark-background);
  overflow: hidden;
  flex: 1;
  flex-shrink: 1;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
}
.banner-title {
  height: 47%;
  padding-top: 7%;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #fff;
  font-size: 3vw;
  font-weight: 100;
  padding-right: 10%;
}
.banner-title .highlight {
  color: var(--orange);
  font-weight: 500;
}
.banner-img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  flex: 1;
}
.img-banner {
  border-left: 1px solid rgba(173, 173, 173, .808);
  border-bottom: 1px solid rgba(173, 173, 173, .808);
  border-top: 1px solid rgba(173, 173, 173, .808);
  border-top-left-radius: 10px;
  width: 70%;
}
.texts-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  color: var(--muted);
  padding: 2% 10% 0;
  text-align: center;
  vertical-align: middle;
}
