/*
 * (c) Symbiotics
 */
html {
  position: initial;
  /* override previous setting of position to relative, fixes Safari bug */
}
.layout {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: 100%;
  grid-template-rows: auto max-content;
  grid-template-areas: "main" "footer";
}
/*************************************
    Main container
**************************************/
#main {
  grid-area: main;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
}
.section {
  display: flex;
  flex-direction: column;
  padding: 25px;
}
/*************************************
    Introduction Section
**************************************/
#section_left {
  display: flex;
  flex-direction: column;
  flex: 3 1 auto;
  padding-bottom: 0px;
}
#companyLogo {
  height: 50px;
  object-fit: contain;
  align-self: flex-start;
}
/*************************************
    Login and Registration Section
**************************************/
#section_right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  align-items: stretch;
}
@media (max-width: 767px) {
  #section_right {
    flex-direction: column;
  }
}
.rg-btn-licence-link-register {
  color: #fff;
  border-color: #004368;
  background-color: #004368;
}
.rg-btn-licence-link-register:hover {
  color: #fff;
  border-color: #3f88c6;
  background-color: #3f88c6;
}
.rg-btn-licence-link-register:focus {
  color: #fff;
  border-color: #3f88c6;
  background-color: #3f88c6;
}
.card-wrapper {
  flex-grow: 1;
  flex-basis: 0;
  justify-content: stretch;
}
#login_card {
  height: 100%;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid black;
}
/*************************************
    Footer
**************************************/
footer {
  grid-area: footer;
  position: relative;
  width: 100%;
}
footer .applicationProvider {
  text-align: center;
  white-space: nowrap;
}
