body {
    background: rgb(0 0 0);
}
.account-container {
    margin-top: 10rem;
}
.account-login-container {
    margin-top: 10rem;
}

.btn-block {
display: block;
width: 100%;
}
label{
    color: #00000085;
    padding-left: 10px !important;
}
.form-group {
margin-bottom: 10px;
}
.form-floating {
    margin-bottom: 10px;
    }    
.p-1{
padding: 1rem!important;
}
.btn-user{
font-weight: 700;
}
.bg-login-image {
background: url('/assets/img/account_bg.jpg');
background-position: center;
background-size: cover;
border-radius: var(--bs-card-border-radius);
}
.bg-account-create-image {
    background: url('/assets/img/create_account_bg.jpg');
    background-position: center;
    background-size: cover;
    border-radius: var(--bs-card-border-radius);
    border-right: 2px solid #000;
    }

hr {
margin: 0.8rem 0;
}

.update-password-tab{
    border-left: 1px solid #000;
    border-top: 0px solid #000;    
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.8rem 0;
  }
  
  .separator::before,
  .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
    opacity: .25;
  }
  
  .separator:not(:empty)::before {
    margin-right: .25em;
  }
  
  .separator:not(:empty)::after {
    margin-left: .25em;
  }

  #app-hero {
    width: 100%;
    min-height: 100vh;
    background: url("/assets/img/app-bg.jpg") top center;
    background-size: cover;
    position: relative;
  }
  
  #app-hero:before {
    content: "";
    background: rgb(0 0 0 / 60%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }