#bwc-login-page {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 400; }
  #bwc-login-page .card {
    margin-top: 262px;
    width: 500px;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: white;
    border: 1px solid #f4f5f9;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(62, 67, 72, 0.2);
    border-radius: 20px;
    padding-top: 44px;
    position: relative; }
    #bwc-login-page .card:after {
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(244, 245, 249, 0.4);
      opacity: 0;
      z-index: 2;
      display: none; }
    #bwc-login-page .card.loading::after {
      opacity: 1;
      display: block; }
    #bwc-login-page .card.loading .lds-spinner {
      display: inline-block; }
    #bwc-login-page .card .login-error-message {
      width: 320px;
      height: 19px;
      display: none;
      font-style: normal;
      font-weight: 600;
      font-size: 14px;
      line-height: 19px;
      align-items: center;
      margin-top: 20px;
      color: #ef6749; }
    #bwc-login-page .card .form-container {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      width: 300px;
      margin-top: 10px; }
      #bwc-login-page .card .form-container .input-item {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin: 15px 0 13px 0; }
        #bwc-login-page .card .form-container .input-item .label {
          font-weight: 600;
          font-size: 16px; }
        #bwc-login-page .card .form-container .input-item input {
          width: 100%;
          height: 40px;
          background: #f4f5f9;
          border: 2px solid #f4f5f9;
          box-sizing: border-box;
          border-radius: 3px;
          padding: 0 6px;
          font-size: 14px; }
          #bwc-login-page .card .form-container .input-item input::placeholder {
            font-size: 14px;
            color: #3b3b3b; }
          #bwc-login-page .card .form-container .input-item input:focus {
            border: 2px solid;
            box-sizing: border-box; }
      #bwc-login-page .card .form-container .form-submit-button {
        margin-top: 15px;
        height: 40px;
        width: 100%;
        font-size: 16px;
        color: white;
        border-radius: 3px;
        border: none;
        box-sizing: border-box;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
      #bwc-login-page .card .form-container .forgot {
        font-size: 14px;
        margin: 23px 0 50px 0;
        text-align: center;
        text-decoration-line: underline;
        color: #3b3b3b; }
    #bwc-login-page .card .forgot-password-header {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      color: #3b3b3b;
      margin-top: 26px; }
      #bwc-login-page .card .forgot-password-header-title {
        font-weight: 600;
        font-size: 20px; }
      #bwc-login-page .card .forgot-password-header-subtitle {
        font-size: 16px; }
    #bwc-login-page .card .bellwether-logo {
      width: 203px;
      height: 111px; }
  #bwc-login-page .back-to-login-button {
    align-self: flex-start;
    margin-left: 290px;
    margin-top: 40px;
    width: 164px;
    height: 40px;
    background: white;
    box-shadow: 0px 2px 4px rgba(120, 118, 224, 0.18), 0px 4px 8px rgba(120, 118, 224, 0.18);
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #7876E0;
    padding: 4px 8px;
    gap: 7.2px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #bwc-login-page .back-to-login-button img {
      width: 32px;
      height: 32px; }
  #bwc-login-page .hidden {
    opacity: 0; }
  #bwc-login-page .opacity-transition {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

.lds-spinner {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 3;
  top: 40%;
  display: none; }

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite; }

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #7876E0; }

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s; }

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s; }

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s; }

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s; }

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s; }

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s; }

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s; }

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s; }

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s; }

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s; }

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s; }

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s; }

@keyframes lds-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
