:root {
  --primary-color: #3CABD0;
  --regular-color: #585862;
  --invalid-color: #dc3545;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: start;
}

.align-item-center {
  align-items: center;
}

.color-primary {
  color: #3CABD0;
}

.color-alternative {
  color: #BCBCBC;
}

.color-regular {
  color: #585862;
}

.bold {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.d-none {
  display: none !important;
}

.downloaded_file {
  color: #08162F !important;
}

.ml-2 {
  margin-left: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #585862;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: borde;
}

/* The container-check */

.container-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */

.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid #3CABD0;
  border-radius: 20%;
}

/* On mouse-over, add a grey background color */

.container-check:hover input ~ .checkmark {
  background-color: #ffffff;
}

/* When the checkbox is checked, add a blue background */

.container-check input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.container-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.container-check .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #3CABD0;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

body {
  background-color: #08162F;
}

footer {
  color: #ffffff;
}

.container-login {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  height: 100%;
}

.container-login form {
  margin-top: -5rem;
}

.container-login .left,
.container-login .right {
  margin-top: -1rem;
}

.container-login .left {
  background-image: url(/images/icon-login-left.svg?6093e02fe32d84cf840b56c2d3d2fb5c);
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -3rem;
  box-shadow: 8rem 0 0 rgba(8, 22, 47, 0.8) inset, 4rem 0 0 #08162f inset;
}

.container-login .right {
  background-image: url(/images/icon-login-right.svg?984e9f71f64d0b37290eb15ec0f65f76);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: -3rem;
  box-shadow: -8rem 0 0 rgba(8, 22, 47, 0.8) inset, -4rem 0 0 #08162f inset;
}

.form-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Rubik", sans-serif;
}

.form-login * {
  width: 100%;
  margin: 0.5rem 0;
}

.form-login .form-title {
  text-align: center;
  color: #3CABD0;
  font-size: 2rem;
}

.form-login .form-remember {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.form-login .input-remember {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.form-login .input-remember input {
  width: 1rem;
}

.form-login .input-remember label {
  margin-left: 0.5rem;
  color: white;
}

.form-login a {
  color: #3CABD0;
}

.form-login .form-group {
  text-align: center;
  position: relative;
}

.form-login .form-group button {
  width: 10rem;
}

.form-login .form-group .email,
.form-login .form-group .pass {
  text-indent: 25px;
}

.form-login .form-group .email ~ .input-icon {
  background-image: url("/images/icon-login.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  width: 22px;
  position: absolute;
  left: 8px;
  bottom: 0;
  top: 0;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.form-login .form-group .pass ~ .input-icon {
  background-image: url("/images/icon-password.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  width: 22px;
  position: absolute;
  left: 8px;
  bottom: 0;
  top: 0;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.form-login .form-group input {
  font-weight: normal;
}

.form-login .errors {
  color: var(--invalid-color);
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0;
}

