body {
    background: #f2f2f226;
    font-family: Verdana, sans-serif;
    color: #596671;
}
/* Flash alert message box */
.alert {
    padding: 12px;
    height: 1.3rem;
    margin-top: -4.5%;
    position: absolute;
    width: 52%;
    margin-right: 1.1vw;
}
.alert-caution{
    background-color: #ffc0002b;
    color: #1d2a36c4;
    border: none;
    border-radius: 2px;
}
.alert-standard{
    background-color: #2e4ba6a3;
    color: white;
}
.closebtn {
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 21px;
  cursor: pointer;

}
.closebtn:hover{
    padding: 0.7rem;
    border-radius: 2px;
    margin-top: -13px;
    margin-right: -13px;
}
.closebtn, .succes {
    color: #1d2a36c4;
}
.closebtn:hover, .succes{
    border: 3px solid #368cd596;
}

.login-page-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.leftTopBar {
    height: 4.5vw;
    top: 0;
    bottom:0;
    overflow: hidden;
    z-index: 99;
    margin-bottom:1v;
}
/*leftTopBar menu items*/
.leftTopBarColumnLeft {
    text-decoration: none;
    float: left;
    margin-left: 1vw;
    margin-top: 0.2rem;
}
.columnLeftLogo {
    height: 2.5vw;
    margin-top: 1.6rem;
    margin-left: 2vw;
}
.leftTopBarMenuItem1 {
    float: right;
    margin-right: 3em;
    margin-top: 1.1em;
    font-size: 26px;
}

/*left content items*/
.contentLeft {
    margin-top: 13vh;
    margin-left: 10%;
    width: 80%;
}
.contentTitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5vh;
}
.contentSubTitle {
    font-size: 18px;
    margin-top: 3vh;
}
input {
  width: 100%;
  height: 32px;
  margin-top: 0.6vh;
  font-size: 18px;
}
.captcha {
    margin-top: 3vh;    
}
.simple-captcha-img {
    margin-top: 3vh;
    padding-bottom: 1vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.simple-captcha-text {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.submitButton {
    width: 165px;
    border-radius: 4px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    background-color: #4f4fa7;
    border: none;
    color: #f2f2f2;;
}
a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
    color: inherit;
}

/*right column*/
.rightColumn {
    background-color: #f4f4ff;
    height: 100vh;
    width: 100%;
    border-radius: 9px;
    border: none;
}
.loginPicture {
    width: 100%;
    margin-top: 22%;
}

@media only screen and (orientation: landscape) {
    .responsiveElement{
      display: none;
    }
    }
  @media only screen and (orientation: portrait) {
    .rightColumn {
        display: none;
    }
    .login-page-wrapper {
        grid-template-columns: 1fr;
      }
    .leftTopBar {
        height: fit-content;
    }
    .columnLeftLogo {
        height: 2.5em;
    }
    .leftTopBarMenuItem1 {
        margin-right: 2.5em;
    }
    .alert {
        margin-top: -8vh;
        position: absolute;
        width: 72%;
        margin-right: 1.1vw;
    }
  }