/*
 * 
 * Copyrights 2023 SIGMA-RH Solutions inc. All Rights Reserved.
 * 
 * This software is the proprietary information of SIGMA-RH Solutions inc.
 * Use is subject to license terms.
 * 
 */

@font-face {
  font-family: "FiraSans";
  src: url("FiraSans-Regular.ttf");
}

html,
body {
  margin: 0px;
}

body {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: FiraSans, Segoe UI Semilight, Segoe UI, Arial, serif;
}

.containerFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  height: 100vh;
}

.item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.item:last-child {
  display: fixed;
  bottom: 0;
}

.containerFlex img {
  max-width: calc(100% - 150px);
}

img.sigma-logo {
  width: 235px;
  height: 125px;
  margin: 0 auto;
}

img.illustration {
  max-width: 388px;
  width: 100%;
  margin: 0 auto;
}

div.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  width: 100%;
}

div.text-container {
  text-align: left;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

p.title {
  color: #232323;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 28px;

  margin: 0;
}

p.subtitle {
  color: #41454d;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  word-break: break-word;

  margin: 0;
}

div.error-container {
  border: 1px solid #bec0c5;
  border-radius: 8px;
  padding: 8px;
  margin-top: 16px;
}

.copyright {
  width: 100%;
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
}

.top-spacing {
  padding-top: 16px;
}

.top-spacing1 {
  padding-top: 8px;
}

p.color-grey {
  color: #838791;
}

p.color-warning {
  color: #9b6d12;
}

p.weight600 {
  font-weight: 600;
}

/* Responsive 992px */
@media (max-width: 992px) {
  p.subtitle {
    font-size: 16px;
  }

  div.container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  img.illustration {
    padding-top: 40px;
    box-sizing: border-box;
  }
}

/* Responsive 576px */
@media (max-width: 576px) {
  div.text-container {
    padding: 0 32px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  font-weight: bold;
  transition: 0.3s;
  background-color: #dab243;
  border: none;
}

.btn:hover {
  opacity: .7;
  cursor: pointer;
}

.btn:active { 
  transform: scale(0.98); 
  /* Scaling button to 0.98 to its original size */ 
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24); 
  /* Lowering the shadow */ 
} 