/*Converter: https://www.cssportal.com/scss-to-css/
 /* Variables */
/* Colors */
/* Fonts */
/* flexbox */
.flex {
  display: flex;
}
.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex-1 {
  flex: 1;
}
/*Defaults*/
body {
  font: normal 400 1.6rem "Baloo 2", sans-serif;
  margin: 0;
  padding: 0;
}
.background {
  background: linear-gradient(to right, #f2f2f8, #fdfdfe);
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow-y: auto;
}
.link,
.link:hover {
  text-decoration: none;
  color: white;
}
.hidden {
  display: none !important;
}
.underline {
  text-decoration: underline;
}
a {
  display: block;
  margin-top: 10px;
  cursor: pointer;
}
button {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 25px;
  text-align: center;
  font-weight: 500;
  height: 40px;
  font-family: "Baloo 2", sans-serif;
}
/* Left panel */
.left-panel {
  width: 35%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  padding: 16px;
}
.left-panel-background-wrapper {
  width: 100%;
  height: calc(100% - 48px);
  display: flex;
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
}
.left-panel-background {
  width: 100%;
  height: 100%;
  background-image: url("../images/img-login@3x.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
}
.logo-container {
  width: 472px;
  height: 472px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border-radius: 472px;
  position: relative;
  border-top-left-radius: unset;
  overflow: hidden;
  border-radius: 8px;
}
.logo-circle {
  width: 472px;
  height: 472px;
  background: radial-gradient(
    circle at 30% 30%,
    white 50%,
    rgba(255, 255, 255, 0.05) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: -236px;
  top: -236px;
}
.left-panel-logo {
  object-fit: cover;
  z-index: 0;
  position: fixed;
  left: 40px;
  top: 40px;
}
.left-panel-link {
  border: none;
  object-fit: cover;
  z-index: 0;
  position: fixed;
  left: 40px;
  bottom: 40px;
  font: normal 400 1.2rem "Baloo 2", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.left-panel-link .link-bebat-icon {
  padding-right: 8px;
}
.left-panel-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* Right panel */
.right-panel {
  width: 65%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.right-panel-logo {
  display: none;
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 20px;
}
.header button {
  color: #777780;
  border: none;
  display: flex;
  font: normal 600 1.2rem "Baloo 2", sans-serif;
  font-size: 0.8rem;
}
.header button img {
  width: 16px;
}
.header .helpBtn {
  margin-right: 10px;
  display: flex;
  background-color: transparent;
  height: 36px;
  border: 1px solid #f2f2f8;
  align-items: center;
}
.header .helpBtn:hover {
  border-color: #f5f5fb;
}
.header .helpBtn:active {
  border-color: #d7d5e4;
}
.header .dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .dropbtn {
  width: 73px;
  background-color: #f2f2f8;
  background-image: url("../icons/tb-chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  height: 36px;
  align-items: center;
  border: 1px solid transparent;
}
.header .dropbtn:hover {
  background-color: #f5f5fb;
}
.header .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  flex-direction: column;
  width: 73px;
  box-shadow: 0px 16px 32px 0px rgba(3, 3, 38, 0.05);
  margin-top: 10px;
}
.header .dropdown-content a {
  color: #777780;
  min-width: calc(100% - 14px);
  max-width: calc(100% - 14px);
  text-decoration: none;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8rem;
  padding: 3.5px 0px 3.5px 4px;
  margin-left: 5px;
  margin-top: 4px;
}
.header .dropdown-content a.active {
  background-color: #f2f2f8;
  color: #777780;
  border-radius: 8px;
}
.header .dropdown-content a:last-child {
  margin-bottom: 10px;
}
.header .dropdown-content a:hover {
  background-color: #f2f2f8;
  color: #777780;
  border-radius: 8px;
}
.header .dropdown-content a.active:hover {
  color: #3d3d40;
}
.header .dropdown.active .dropbtn {
  background-color: #d7d5e4;
  background-image: url("../icons/tb-chevron-up.svg");
}
.header .dropdown.active .dropdown-content {
  display: flex;
}
#localAccountForm {
  margin-bottom: 0px;
  width: 80%;
  margin-left: 10%;
}
.unitePortalsWrapper {
  background-color: #eef3fd;
  display: flex;
  flex-direction: row;
  justify-content: left;
  width: 100%;
  background-clip: padding-box;
  border: 10px solid transparent;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  font-size: 1rem;
}
.unitePortalsWrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -10px;
  border-radius: 16px 16px 0px 0px;
  background: linear-gradient(to right, #f2f2f8, #f9f9fb);
}
.unitePortalsWrapper a {
  font-size: inherit !important;
  color: #001b46;
  text-decoration: underline;
}
.unitePortalsWrapper img {
  width: 18px;
  height: 18px;
}
.unitePortalsWrapper .unitePortals {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  color: #001b46;
}
.unitePortalsWrapper .unitePortals .unitePortalsFirst {
  font-weight: 500;
}
.unitePortalsWrapper .unitePortals .unitePortalsFirst,
.unitePortalsWrapper .unitePortals .unitePortalsSecond {
  line-height: 150%;
}
.unitePortalsWrapper .unitePortals .unitePortalsThird {
  font-weight: 600;
  width: fit-content;
}
/* Custom styles for Azure AD B2C input controls */
#api {
  display: flex;
  width: 80%;
  padding: 0% 10% 0% 10%;
  flex-grow: 1;
  align-items: center;
}
/* Header styles */
#api .heading {
  display: flex;
  justify-content: left;
}
#api .heading h1 {
  color: #777780;
  text-align: center;
  font: normal 600 1.6rem "Baloo 2", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  padding: 0;
  margin-bottom: 0;
}
#api .intro h2 {
  margin: 0 0 2.5vh 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 125%;
}
/* Buttons */
#api .buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5%;
}
#api .buttons button:hover {
  background-color: #c3e10c;
}
/* Sign in Buttons */
#api .signin,
.proceed {
  background-color: #afca0a;
  color: white;
  border: none;
}
#api #forgotPassword {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 25px;
  text-align: center;
  font: normal 600 1.2rem "Baloo 2", sans-serif;
  font-size: 1rem;
  margin-top: unset;
  margin-right: 10px;
  max-height: 20px;
}
#api #forgotPassword:hover {
  background-color: #f5f5fb;
}
/* Sign up Button */
#api .create {
  display: none;
}
/* Form container */
#api .entry {
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 100%;
  background-color: white;
  background-clip: padding-box;
  border: 10px solid transparent;
  margin-top: -10px;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
#api .entry:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -10px;
  border-radius: 0px 0px 16px 16px;
  background: linear-gradient(to right, #f2f2f8, #f9f9fb);
}
/* Label styles */
#api .entry-item label,
.password-label label {
  color: #777780;
  font: normal 600 1.6rem "Baloo 2", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 5px;
  line-height: 150%;
}
#api .entry-item .password-label {
  margin-top: 15px;
}
/* Input styles */
#api input[type="text"],
#api input[type="email"],
#api input[type="password"] {
  height: 44px;
  width: 100%;
  padding: 10px 16px;
  margin: 0 0;
  border: 1px solid #e5e4ef;
  border-radius: 16px;
  box-sizing: border-box;
  font: normal 400 1.6rem "Baloo 2", sans-serif;
  font-size: 1.2rem;
}
#api input[type="submit"] {
  background-color: #afca0a;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 25px;
  text-align: center;
  font-weight: 500;
}
/* Placeholder text */
#api input::placeholder {
  font-size: 14px;
  color: #777780;
}
/* Focus styles for inputs (optional) */
#api input:focus {
  border: 1px solid #afca0a;
  outline: none;
}
/* Link styles (e.g., "Forgot your password?") */
#api .buttons a {
  font: normal 800 1.2rem "Baloo 2", sans-serif;
  color: #777780;
  text-decoration: none;
}
/* Error messages or notifications */
#api .error {
  font-size: 1rem;
  color: red;
}
/* Divider styles */
#api .divider {
  display: none;
}
.lower-section {
  font: normal 400 1.2rem "Baloo 2", sans-serif;
  font-size: 1rem;
  width: 80%;
  padding-left: 10%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-bottom: 24px;
}
.lower-section .register-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-left: 10%;
  border: solid 1px #dddbe8;
  border-radius: 8px;
  height: fit-content;
  font-size: 12px;
}
.lower-section .register-content span {
  color: #3d3d40;
  font-weight: 500;
  line-height: 150%;
}
.lower-section .register-content a {
  color: #afca0a;
  text-decoration: underline;
  margin-top: 5px;
  width: fit-content;
}
@media (max-width: 700px), (max-height: 750px) {
  .lower-section {
    bottom: unset;
    position: relative;
  }
  .right-panel-logo {
    width: 75px;
    margin-top: 10px;
  }
}
@media (max-width: 2000px) and (min-width: 1201px) {
  .lower-section,
  #api .error,
  #api .entry-item label,
  .password-label label,
  #api #forgotPassword,
  .unitePortalsWrapper,
  .left-panel-link {
    font-size: 0.8rem;
  }
  #api input[type="text"],
  #api input[type="email"],
  #api input[type="password"] {
    font-size: 1rem;
    margin: unset;
    padding: 5px 16px;
  }
  #api .entry-item .password-label {
    margin-top: unset;
  }
  .right-panel .header {
    padding: 10px;
  }
}
@media (max-width: 1280px) {
  .left-panel {
    max-width: calc(380px + 16px);
  }
}
@media (max-width: 1200px), (max-height: 650px) {
  .background {
    background: linear-gradient(to right, #f2f2f8, #fdfdfe);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  #api {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .left-panel {
    display: none;
  }
  .right-panel {
    width: 100%;
    right: unset;
  }
  #localAccountForm {
    margin-left: unset;
  }
  .lower-section .register-content {
    margin-left: unset;
  }
  .right-panel-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2.5%;
    left: 2.5%;
    margin-top: 5px;
  }
  #api .heading h1 {
    display: block;
    margin-top: 0em;
    unicode-bidi: isolate;
    margin-block-end: 1em;
    font-size: 1.2rem;
  }
  #api .intro h2 {
    font-size: 1.4rem;
  }
  #api .entry-item label,
  .password-label label {
    font-size: 1rem;
  }
  #api input[type="text"],
  #api input[type="email"],
  #api input[type="password"] {
    font-size: 1.2rem;
    padding: 5px 16px;
  }
  #api input[type="submit"] {
    border: solid 2px #777780;
  }
  #api .buttons a {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .lower-section {
    margin-top: 20px;
  }
  #api #forgotPassword {
    font-weight: 500;
    font-size: 12px;
  }
}
