/* #region global */
:root {
    --main-blue: #145f7d;
    --second-blue: #bdd0d9;

}

body{
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;;
  }

  #main-container{
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
  }
  /* #endregion */

  /* #region header */
  .top-bar {
    height: 82px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index:1000;
    display: flex;
    align-items: center;
  }

  .top-bar-text{
    color: var(--main-blue);
    font-size: 30px;
    font-family:'Poppins', sans-serif;
    padding-left: 160px;
    padding-top: 80px;
  }

  .top-bar-text-inspire{
    color: var(--main-blue);
    font-size: 35px;
    font-family:'Poppins', sans-serif;
    font-weight: bolder;
    padding-left: 12px;
    padding-top: 75px;
  }

  .client-logo{
    margin-left: 50px;
    margin-top: 75px;
    height: 100px;
  }

  .client-logo:hover{
    width: auto;
    transition: 0.5s;
    box-shadow: inset 5px rgba(0,0,0,.075), 0 0 8px var(--main-blue);
  }
  /* #endregion */

  /* #region center float */
  .imageCarousel{
    background-size:cover ;
    border-radius: 2rem;
    background-image: url(/Icons/background-medical-5.jpg);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 700px;
    margin: 300px 100px;
  }

  @media only screen and (max-width: 900px) {
    body {
      overflow: auto !important;
    }

    #main-container {
      flex-direction: column !important;
      height: auto !important;
    }

    .top-bar{
      background: #fff;
      position: unset !important;
      height: 85px !important;
    }

    .top-bar-text{
      padding-top: 0 !important;
    }

    .top-bar-text-inspire{
      padding-top: 0 !important;
    }

    .imageCarousel{
      width: 100% !important;
      height: 100% !important;
      max-width: none !important;
      max-height: none !important;
      margin: 0 !important;
      border-radius: 0 !important;
    }

    #login-form-content{
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
    }

    #right-column {
      max-width: 100% !important;
      border-radius: 0 0 2rem 2rem !important;
      min-width: unset !important;
    }

    #login-form-gradient, #login-form, #right-column {
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    #left-column {
      padding: 50px !important;
    }

    .footer {
      position: unset !important;
      padding: 0 !important;
    }

    .footer-placeholder {
      display: none;;
    }
  }

  @media only screen and (max-width: 625px) {
    .top-bar-text{
      display: none;
    }

    .top-bar-text-inspire{
      display: none;
    }
  }

  @media only screen and (max-height: 925px) {
    .imageCarousel {
      height: 70% !important;
    }
  }

  @media only screen and (max-height: 600px) {
    .top-bar-text{
      padding-top: 0 !important;
    }

    .top-bar-text-inspire{
      padding-top: 0 !important;
    }
  }

  #login-form {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
      box-shadow: 0px 15px 40px -1px rgba(0,0,0,0.58);
  }

  #login-form-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
  }

  #left-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 80px 50px 80px 80px;
    min-width: 300px;
  }

  #right-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 400px;
    padding: 50px;
    background: rgb(0,0,0,0.3);
    border-radius: 0 2rem 2rem 0;
    min-width: 300px;
  }

  #login-form-instructions {
    color: #fff;
  }

  #login-form-instructions a {
    color: white;
  }

  #login-form-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--main-blue) 20%, rgba(255, 255, 255, 0) 83%),
    linear-gradient(150deg, var(--main-blue) 15%, rgba(255, 255, 255, 0) 83%),  rgba(1,1,1,0) 83%;
    background-size: cover;
    border-radius: 2rem;
      box-shadow: 0px 15px 40px -1px rgba(0,0,0,0.58);
  }

  #login-form-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
  }

  #login-form-header-logo{
    height: 80px;
    width: 130px;
    display:flex;
    justify-content: left;
  }

  #login-form-header-message{
    color:#F3F2EE;
    font-family:'Poppins', sans-serif;
    display:flex;
    justify-content: left;
  }

  #login-form-header-logo img{
    height: 60px;
    align-items:left;
  }

  #login-form-fields {
      display: flex;
      flex-direction: column;
      justify-content: left;
      align-items: left;
      height: 100%;
    max-width: 320px;
  }

  .login-form-field{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .login-form-text-field{
    padding: 10px;
    border-radius: 12px;
    border: 1px solid gray;
    width: 100%;
    background: transparent;
    color:#F3F2EE;
    font-family:'Poppins', sans-serif;
  }

  .login-form-text-field::placeholder {
    color: #ffffff;
    opacity: 1; /* Firefox */
  }

  .login-form-a{
    color:#F3F2EE;
    font-family:'Poppins', sans-serif;
    text-decoration: none;
    font-size: 15px;
  }

  .login-form-btn{
    padding: 10px 20px;
    background-color: #ffffff;
    color: var(--main-blue);
    font-family:'Poppins', sans-serif;
    border-radius: 10px;
    border: 4px #fd0000;
  }

  #login-form-btn {
      justify-content: left;
      align-items: left;
    margin-left: 10px;
  }

  .login-form-center-box{
    display:flex;
    flex-direction: column;
  }

  .login-form-btn:hover{
    color:#ffffff;
    background-color: #adadad;
    transition: 0.5s;
  }

  .login-form-a:hover{
    color:#D9D7CE;
    transition: 0.5s;
  }

  .login-form-text-field:hover{
    background-color: var(--second-blue);
    transition: 0.5s;
  }

  .login-form-show-password-container{
    margin-top: -15px;
    color:#F3F2EE;
    display: flex;
  }

  .login-form-show-password-container p{
      margin-left: 10px;
  }
  /* #endregion */

  /* #region footer */
  .footer{
    height: 82px;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    bottom: 0;
    right: 0;
    z-index: 1001;
    align-items: flex-end;
    align-self: last baseline;
  }

  .footer-item{
    width: 250px;
    height: 100%;
  }

  #copyright{
    font-size: 15px;
    color:#000;
    font-family:'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #clariti-link{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .clariti-logo {
    height: 60px;
    width: auto;
    margin-left: 50px;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: last baseline;
    bottom: 0;
    right: 0;
    transition: 400ms 400ms;
    border-radius: 25px;
  }

  .clariti-logo:hover{
    width: auto;
    box-shadow: 0px 15px 15px -16px #916fdf;
  }
  /* #endregion */

  /* #region animation */
  .animation {
    left: 657px !important;
    top: -7px;
    transition: 0.6s;
    position: relative;
    scale: 0.4;
    z-index: 9999;
    border-radius: 50% !important;
    background: rgba(255,255,255,1.0) !important;
  }

  .hide-div{
    display: none;
    transition: 0.3s;
  }
  /* #endregion */