@charset "UTF-8";

:root {
  --color-primary: #016eb6;
  --color-primary-light: #307eb3;
  --color-primary-dark: #005085;
  --color-Grey-light-1: #faf9f9;
  --color-Grey-light-2: #f4f2f2;
  --color-Grey-light-3: #f0eeee;
  --color-Grey-light-4: #ccc;
  --color-Grey-dark-1: #333;
  --color-Grey-dark-2: #777;
  --color-Grey-dark-3: #999;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-image: linear-gradient(to right bottom, #307eb3, #005085);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  color: #777;
  min-height: 69rem;
}

.small-col-box {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.text-input {
  max-width: 90%;
  width: 40rem;
  height: 3rem;
  border: 2px solid #307eb3;
  font-family: inherit;
  font-size: medium;
  color: white;
  border-radius: 50px;
  padding-left: 1rem;
  background-color: #307eb3;
}

.text-input:invalid, .input-notvalid {
  border: 2px solid red!important;
}

.text-input__small {
  width: 30rem;
}

.text-input:focus {
  border: 2.5px solid #307eb3;
  outline: none;
}

.text-input::placeholder {
  color: white;
  opacity: 0.25;
}


.u-margin-top-small-medium {
  margin-top: 2.5rem;
}

.u-margin-top-small {
  margin-top: 1.5rem;
}

.u-margin-left-large {
  margin-left: 8rem;
}

.u-margin-left-medium {
  margin-left: 4rem;
}

.u-margin-left-small {
  margin-left: 1.5rem;
}

.u-margin-right-large {
  margin-right: 8rem;
}

.u-margin-right-medium {
  margin-right: 4rem;
}

.u-margin-right-small {
  margin-right: 1.5rem;
}



.login {
  display: flex;
  max-width: 90%;
  width: 70rem;
  height: 50rem;
  background-color: #f4f2f2;
  margin: auto auto;
  border-radius: 5px;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}

.login__leftSide {
  display: flex;
  flex: 1;
}

.login__update {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.login__update--header {
  display: flex;
  flex: 1;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
  color: #016eb6;
}

.login__update--mainText {
  padding: 1rem;
  display: flex;
  flex: 3;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  color: #016eb6;
}

.login__update--button {
  display: flex;
  flex: 1;
  justify-content: center;
}

.login__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right bottom, rgba(1, 110, 182, 0.8), rgba(1, 110, 182, 0.8));
}

.login__info--logo {
  width: 20rem;
  height: 10rem;
}

.login__info--application-name {
  font-size: x-large;
  font-family: inherit;
  margin-top: 2rem;
  font-weight: 400;
  color: white;
}

.login__info--update {
  margin-top: 5rem;
}

.login__info--update-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.login__info--update-logo {
  width: 4rem;
  height: 4rem;
  animation-name: normalToBig;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.login__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.login__info--logo_small {
  display: none;
  align-self: center;
  width: 20rem;
  height: 10rem;
}

.login__info--application-name-small {
  display: none;
  align-self: center;
  font-size: x-large;
  font-family: inherit;
  margin-top: 2rem;
  font-weight: 400;
  color: #016eb6;
}

.login__form--text {
  display: flex;
  flex: 1;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
  color: #016eb6;
}

.login__form--icon {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin-left: -3rem;
  margin-bottom: 1rem;
  fill: #fff;
}

.login__form--icon-password {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin-top: 2rem;
  margin-left: -3rem;
  fill: #fff;
}

.login__form--username {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.login__form--password {
  display: flex;
  flex: 1;
  justify-content: center;
}

.login__form--button {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}


.form--button {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.btn {
  background-image: linear-gradient(to right bottom, rgba(48, 126, 179, 0.8), rgba(0, 80, 133, 0.8));
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  min-width: 15rem;
  height: 3.5rem;
  color: white;
}

.btn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  align-items: center;
  border-radius: 30px;
  border: none;
}

.action_btn,
.status_icon_active_true,
.status_icon_active_false {
  background-color: transparent;
  padding-left: 0rem;
  padding-right: 0rem;
  align-items: center;
  border: none;
}

.status_icon_active_true {
  visibility: hidden;
}

.red {
  color: red !important;
}

.orange {
  color: orange !important;
}



.btn:link,
.btn:visited {
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.6rem;
  background-color: #016eb6;
  color: white;
  height: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}

.btn__disabled {
  background-image: linear-gradient(to right bottom, rgba(146, 146, 146, 0.8), rgba(90, 90, 90, 0.8));
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}

.btn--white::after {
  background-color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn--animated {
  animation: moveInBottom 1s 1 ease-out;
  animation-fill-mode: backwards;
}

.displayBadge{
  font-size: 1.6rem;
  min-width: 15rem;
  height: 3.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 30px;
  border: none;
}

/*# sourceMappingURL=style.css.map */

.logo_xsmall {
  align-self: center;
  width: 10rem;
  height: 5rem;
}

.logo_xsmall2 {
  width: 10rem;
  height: 5rem;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
}

.page {
  max-width: 95%;
  width: 100rem;
  height: 90%;
  min-height: 66rem;
  background-color: #f4f2f2;
  margin: auto auto;
  border-radius: 5px;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}

.page-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #f4f2f2;
  height: 4rem;
  padding-bottom: 1rem;
}

.page-title {
  justify-self: center;
  font-size: 3rem;
  color: #016eb6;
  padding: 10rm;
  margin: auto auto;
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: stretch;
  row-gap: 10px;
}

.page-btn,
.page-field {
  width: 90%;
  min-width: 15rem;
  background-image: linear-gradient(to right bottom, rgba(48, 126, 179, 0.8), rgba(0, 80, 133, 0.8));
}

.bsn_ok {
  background-color: lightgreen;
  border: 2px solid lightgreen !important;
  color: black;
  background-image: none;
}

.page-combo-element {
  font-size: 1.6rem;
  width: 95%;
  min-width: 15rem;

  border: 2px solid #307eb3;
  background-color: #307eb3;
  color: white;
  border-radius: 30px;
  height: 3.5rem;
}

.page-combo-element option {
  color: white;
  background-color: #307eb3;
}

.page-grid {
  width: 95%;
}

.page-input-row {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.error-message {
  color: red !important;
  font-weight: bold;
}

.hide-row {
  display: none !important;
}

.row-marge {
  padding-top: 2rem;
}

.page-icon {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin-left: -3rem;
  margin-bottom: 1rem;
  fill: #fff;
}

.page-text-element,
.page-text-element-small {
  width: 100%;
  flex: 1;
  padding-top: 10px;
  justify-content: center;
  font-size: 1.6rem;
  color: #016eb6;
  text-align: center;
}

.page-text-element-small {
  font-size: 1.2rem !important;
}

.birthday-box {
  width: 6rem;
  height: 6rem;
  border: 2px solid #307eb3;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.4);
  border-radius: .5rem;
  text-align: center;
  font-size: large;
  margin: 0 1rem;
}

.birthday-box:focus {
  border: 3px solid #016eb6;
  outline: none;
}

.wrapper {
  display: inline-flex;
  height: 7.5rem;
  width: 30rem;
  align-items: center;
  justify-content: space-evenly;
}

.wrapper .option {
  background: #fff;
  height: 75%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}

.wrapper .option .dot {
  height: 1.5rem;
  width: 1.5rem;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}

.wrapper .option .dot::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 8px;
  height: 9px;
  background: #0069d9;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.4);
  transition: all 0.3s ease;
}

input[type="radio"] {
  display: none;
}

#bsnCheck:checked:checked~.bsnCheck,
#docCheck:checked:checked~.docCheck {
  border-color: #0069d9;
  background: #0069d9;
}

#bsnCheck:checked:checked~.bsnCheck .dot,
#docCheck:checked:checked~.docCheck .dot {
  background: #fff;
}

#bsnCheck:checked:checked~.bsnCheck .dot::before,
#docCheck:checked:checked~.docCheck .dot::before {
  opacity: 1;
  transform: scale(1);
}

.wrapper .option span {
  margin-left: 1rem;
  font-size: 10px;
  color: #808080;
}

#bsnCheck:checked:checked~.bsnCheck span,
#docCheck:checked:checked~.docCheck span {
  color: #fff;
}

.checkbox-container {
  display: flex;
  flex: 1;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.7rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  justify-content: center;
}

.checkbox-container ::after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.checkbox-container :hover {
  background-color: #016eb6;
}

/* Hide the browser's default radio button */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  margin-left: 1rem;
  position: relative;
  margin: auto 0;
  margin-left: 1.5rem;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #307eb3;
  border-radius: 50%;
}

/* When the radio button is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
  background-color: #016eb6;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.u-fill-green {
  fill: green;
  color: green;
  font-weight: bold;
}

.u-fill-red {
  fill: red;
  color: red;
  font-weight: bold;
}

@media only screen and (max-width: 550px) {
  .login__info {
    display: none;
  }

  .login__info--logo_small {
    display: initial;
  }

  .login__info--application-name-small {
    display: initial;
  }

  .qrcode {
    width: 350px;
    height: 350px;
  }
}
