.side-left {
  width: 60%; /*calc(100% - 340px);*/ }
  @media screen and (max-width: 660px) {
    .side-left {
      display: none; } }
  .side-left .side-left-bg {
    position: absolute;
    height: 100%;
    width: 60% /*calc(100% - 340px);*/;
    background-image: url(../images/bg-1.jpg);
    background-size: cover;
    background-position: center; }
    .side-left-bg.carousel .carousel-item {
      background-size: cover;
      background-position: center; 
      height: 100vh;}
      .side-left-bg.carousel .carousel-item:first-child {
        background-image: url(../images/bg-1.jpg); }
      .side-left-bg.carousel .carousel-item:nth-child(2) {
        background-image: url(../images/bg-2.png); }
  .side-left .side-left-overlay {
    background-color: var(--def-color-transparent);
    position: absolute;
    width: 60%; /*calc(100% - 340px);*/
    height: 100vh;
    display: flex; flex-direction: column; }
  .side-left .side-left-content {
    padding: 50px 50px 30px;
    color: #FFF;
    min-height: 560px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .side-left-content h1.org-name {
      text-transform: uppercase; }
    .side-left-content h2.org-tagline {
      font-style: italic; 
      font-size: 13pt;
      margin-bottom: 24px; }
    .side-left-content h3.org-values {
        font-family: var(--def-font-family);
        font-style: italic; 
        font-size: 8pt; }
    .side-left-content p {
      font-size: .9rem;
      padding: 25px 0;
      margin-bottom: 10px;
      border-bottom: 1px solid #cccccc70; }
    .side-left-content ul.links {
      display: flex; }
      .side-left-content ul.links li {
        color: #fff;
        padding: 2px 10px 2px 0;
        font-size: 0.8rem; }
        .side-left-content ul.links li a {
          color: #fff;
          border-right: 1px solid #fff;
          padding-right: 10px;}
        .side-left-content ul.links li:last-child a {
          border-right: none; }

.side-right {
  background-color: #FFF;
  min-height: 560px;
  height: 100vh;
  width:40%; /*340px;*/
  padding: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .side-right-content {
    background-color: #FFF;
    padding: 60px 20px 10px;
    text-align: center;
    height: calc(100% - 140px);
    min-height: 450px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .side-right-footer {
    background-color: #FFF;
    min-height: 140px;
    width: 100%;
    text-align: center; }
  @media screen and (max-width: 660px) {
    .side-right {
      width: 100%; } }
  .side-right .logo {
    height: 80px; }
  .side-right h2 {
      text-transform: uppercase;
      font-size: 1rem;
      font-family: var(--def-font-family);
      padding: 20px 10px; }
  .side-right .social-container {
    display: flex; }
    .side-right .social-container ul {
      float: none;
      margin: auto; }
      .side-right .social-container ul li {
        float: left;
        padding: 8px;
        background-color: #FFF;
        box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        border-radius: 2px;
        width: 35px;
        height: 35px;
        border-radius: 50px;
        margin-left: 10px;
        font-size: 12px; }
        .side-right .social-container {
          padding: 10px 0; }
        .side-right .social-container a {
          color: #FFF; }
      .side-right .social-container ul .facebook {
        background-color: #3b5894; }
      .side-right .social-container ul .twitter {
        background-color: #19a1f7; }
      .side-right .social-container ul .instagram {
        background-color: #e1306c; }
      .side-right .social-container ul .youtube {
        background-color: #db443b; }
      .side-right .social-container ul .linkedin {
        background-color: #007ab4; }
  .side-right .form-row label {
    font-size: 1rem; }
  .side-right .form-extras {
    font-size: 0.8rem; }
  .side-right .copyright-section {
      margin-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      min-height:30px; }

/* forgot password */
.side-forgot {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #007ab4;
  color: #fff;
  overflow-x: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: 0.5s; }
  .side-forgot.opened {
    width: 40%; }
  @media screen and (max-width: 660px) {
    .side-forgot.opened {
      width: 100%; }}
  .side-forgot .btn-close {
    color: #fff;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px; }
  .side-forgot-content {
    padding: 20px;
    /*text-align: center;*/
    height: calc(100% - 140px);
    min-height: 450px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .side-forgot-content h2 {
      text-transform: uppercase;
      text-align: left;
      width: 100%;
      margin-bottom: 42px;
      font-size: 1.2rem;
      font-weight: bold;
      font-family: var(--def-font-family);}
    .side-forgot-content .form-group label {
      font-size: 1rem; }
    .side-forgot-content .form-group input.form-control {
      padding: 2px 4px!important;
      background-color: #007ab4;
      border-color: #fff;
      color: #fff; }
    .side-forgot-content .btn-forgot {
      background-color: #fff;
      color: var(--def-color); }
    .side-forgot-content .btn-forgot:hover {
      background-color: #13627e!important;
      color: #fff; }

/* extend: bootstrap carousel fade anim */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity; }
  .carousel-fade .carousel-item.active,
  .carousel-fade .carousel-item-next.carousel-item-left,
  .carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1; }
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    opacity: 0; }
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0); }