body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  box-sizing: border-box;
  font-size: 12px;
}
main {
  display: flex;
  min-height: 100vh;
  min-width: 100vw;
  background: url("/images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.left-panel {
  flex: 1;
}
.header {
  display: flex;
  justify-content: space-between;
  padding-top: 48px;
}
.nbr_logo {
  padding-left: 110px;
}
.nbr_logo img {
  width: 60%;
}
.ereturn_logo {
  display: flex;
  justify-content: flex-end;
  margin-right: 34px;
}
.right-panel {
  width: 34%;
  padding: 15px 0;
  padding-top: 56px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: #f4f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 60%;
  text-align: center;
}
.tags {
  text-align: center;
}
.tags button {
  color: black;
  border: 1px solid black;
  padding: 6px 10px;
  border-radius: 25px;
  font-weight: bold;
  background: white;
  cursor: pointer;
  margin: 0 5px 10px 0;
  transition: all 0.2s ease-in-out;
}
.tags button:hover {
  background-color: black;
  color: white;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  width: 100%;
}
.form-group .lblDiv {
  margin-bottom: 0.5rem;
  font-size: 14px;
  text-align: left;
}
.input-wrapper {
  width: 100%;
  position: relative;
  text-align: left;
}
.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="password"] {
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
}
.input-wrapper input[type="text"] {
  width: 84%;
  padding: 11px 12% 11px 4%;
}
.input-wrapper input[type="email"] {
  width: 100%;
  padding: 11px 12% 11px 4%;
}
.input-wrapper input[type="password"] {
  /* padding: 11px 0 11px 4%;
  border-right: 0; */
  width: 100%;
  padding: 11px 12% 11px 4%;
  /* border-top-right-radius: 0;
  border-bottom-right-radius: 0; */
}
.input-wrapper .see-indicator {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #e9ecef;
  width: 11%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #ced4da;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-wrapper input:focus,
.input-wrapper input:active {
  border-color: #5484b2;
  outline: 1px solid rgba(84, 132, 178, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(84, 132, 178, 0.25);
}
input::placeholder {
  font-style: italic;
}
.login-btn {
  width: 100%;
  background: #5484b2;
  text-align: center;
  border: none;
  margin-top: 16px;
  color: white;
  padding: 10px 0;
  border-radius: 4px;
  font-size: 1rem;
}
.ghost {
  margin-top: 16px;
  background: none;
  border: none;
}
.ghost span {
  font-size: 14px;
}
.ghost .register {
  background: none;
  border: none;
  color: #5484b2;
}
.return_logo_mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .left-panel {
    display: none;
    flex: 0;
  }
  .right-panel {
    width: 100%;
  }
  .return_logo_mobile {
    display: block;
    margin-top: 15px;
  }
}
