.container-landscape-maincolumn {
  background-color: #fff;
  background-image: none;
  border-radius: 0px;
  height: 100vh;
  float: right;
  padding: 0px;
}

.container-landscape-image {
  padding: 0px;
}
.container-landscape-image .landscape-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.container-landscape-image .landscape-front-image {
  object-fit: contain;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.termsAndConditions {
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  padding: 2px 0px;
}
.termsAndConditions a {
  color: #000;
}

/*marketing messages*/
.marketing-messages {
  width: 94%;
  margin: 5px auto;
  border: 1px solid;
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.marketing-messages-title {
  text-align: center;
  border-bottom: 1px solid;
}

.marketing-messages-body {
  padding: 5px;
}

/*form styles*/
.animated-card-form {
  width: 94%;
  margin: 0px auto;
  text-align: center;
  position: relative;
}
.animated-card-form fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 0px 30px;
  box-sizing: border-box;
  width: 100%;
  /*stacking fieldsets above each other*/
  position: relative;
  /*Hide all except first fieldset*/
  /*headings*/
}
.animated-card-form fieldset:not(:first-of-type) {
  display: none;
}
.animated-card-form fieldset .animated-card-form-title {
  margin-top: 16px;
}
.loginLogoBox {
  margin-top: 45px;
  margin-bottom: 45px;
}

.loginLogoBox img {
  width: 180px;
  height: 180px;
}

.or-line {
  height: 15px;
  width: 100%;
  border-bottom: solid 1px #8C8C8C;
  text-align: center;
  margin: 2em 0;
}

.or-line span {
  background: #fff;
  position: relative;
  top: 0;
  padding: 0 20px;
  line-height: 30px;
}

.oidc-login-button {
  border: solid 1px #8C8C8C;
  line-height: 41px;
  padding: 10px;
}

.oidc-login-button > span {
  color: #5F5F5F;
  padding-left: 6px;
  padding-right: 6px;
}
/*basic reset*/
* {
  margin: 0;
  padding: 0;
}

.coccarda {
  height: 100px;
}

#progressbar {
  margin-top: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #212529;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #17A2B8;
  background: #FFFFFF;
  border-radius: 3px;
  border: 1px solid rgb(230, 230, 230);
  margin: 0 auto 5px auto;
}
#progressbar li:after {
  content: "";
  width: 85%;
  height: 1px;
  background: rgb(230, 230, 230);
  position: absolute;
  left: -42%;
  top: 9px;
}
#progressbar li:first-child:after {
  content: none;
}
#progressbar li.active {
  /*
      marking active/completed steps green
      The number of the step and the connector before it = green
  */
}
#progressbar li.active:before, #progressbar li.active:after {
  background: #17A2B8;
  color: #FFFFFF;
  border: 1px solid rgba(230, 230, 230, 0.3);
}