/* stylelint-disable */
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Montserrat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text--green-00 {
  color: #099FBA;
}

.text--green-01 {
  color: #0E95AD;
}

.text--green-02 {
  color: #127486;
}

.text--green-03 {
  color: #166B7A;
}

.text--white-00 {
  color: #FCFCFC;
}

.text--white-01 {
  color: #FDFFFF;
}

.text--white-02 {
  color: #DADEDE;
}

.text--white-03 {
  color: #eaf4f7;
}

.text--black-00 {
  color: #02121F;
}

.text--black-01 {
  color: #657173;
}

.bg--green-00 {
  background: #099FBA;
}

.bg--green-01 {
  background: #0E95AD;
}

.bg--green-02 {
  background: #127486;
}

.bg--green-03 {
  background: #166B7A;
}

.bg--white-00 {
  background: #FCFCFC;
}

.bg--white-01 {
  background: #FDFFFF;
}

.bg--white-02 {
  background: #DADEDE;
}

.bg--white-03 {
  background: #eaf4f7;
}

.bg--black-00 {
  background: #02121F;
}

.bg--black-01 {
  background: #657173;
}

body {
  background-color: #FCFCFC;
}

body #content {
  padding: 80px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body #content a {
  font-weight: 600;
  color: #166B7A;
}

body #content .first-column {
  z-index: 1;
  margin: 0 auto;
}

body #content .first-column .container {
  min-width: 320px;
  max-width: 380px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
}

body #content .first-column .container .wsaude-logo {
  width: 240px;
  margin: 0 auto;
}

body #content .first-column .container .title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 700;
}

body #content .first-column .container .description {
  font-size: 16px;
  font-weight: 400;
}

body #content .first-column .container .form .email,
body #content .first-column .container .form .password,
body #content .first-column .container .form .sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}

body #content .first-column .container .form .email .input,
body #content .first-column .container .form .password .input,
body #content .first-column .container .form .sign-in .input {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #DADEDE;
}

body #content .first-column .container .form .email .input:focus,
body #content .first-column .container .form .password .input:focus,
body #content .first-column .container .form .sign-in .input:focus {
  outline: none;
  border-color: #099FBA;
}

body #content .first-column .container .form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
}

body #content .first-column .container .form .box .remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #02121F;
}

body #content .first-column .container .form .sign-in .btn {
  border: 1px solid #DADEDE;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

body #content .first-column .container .form .sign-in .btn:hover {
  background-color: #166B7A;
}

body #content .first-column .container .form .contact {
  padding-top: 16px;
}

body #content .first-column .container .form .contact p {
  padding-top: 8px;
}

body #content .second-column {
  display: none;
}

body #forgot-password {
  padding: 80px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body #forgot-password .first-column {
  z-index: 1;
  margin: 0 auto;
}

body #forgot-password .first-column .container {
  min-width: 320px;
  max-width: 380px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
}

body #forgot-password .first-column .container .wsaude-logo {
  width: 240px;
  margin: 0 auto;
}

body #forgot-password .first-column .container .title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 700;
}

body #forgot-password .first-column .container .description {
  font-size: 16px;
  font-weight: 400;
}

body #forgot-password .first-column .container .form .email,
body #forgot-password .first-column .container .form .recover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}

body #forgot-password .first-column .container .form .email .input,
body #forgot-password .first-column .container .form .recover .input {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #DADEDE;
}

body #forgot-password .first-column .container .form .email .input:focus,
body #forgot-password .first-column .container .form .recover .input:focus {
  outline: none;
  border-color: #099FBA;
}

body #forgot-password .first-column .container .form .recover .btn {
  border: 1px solid #DADEDE;
  padding: 8px 16px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

body #forgot-password .first-column .container .form .recover .btn:hover {
  background-color: #166B7A;
}

body #forgot-password .first-column .container .form a {
  text-decoration: none;
  font-weight: 600;
  color: #02121F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

body #forgot-password .first-column .container .form a img {
  width: 20px;
  margin-right: 8px;
}

body #forgot-password .second-column {
  display: none;
}

body #system {
  padding: 80px 0 0;
  width: 100%;
  text-align: center;
}

body #system .container {
  min-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}

body #system .container .wsaude-logo {
  width: 240px;
  margin: 0 auto;
}

body #system .container .icon {
  width: 120px;
  margin: 64px auto 0;
}

body #system .container .title {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 700;
}

body #system .container .description {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

body #system .container .btn {
  border: 1px solid #DADEDE;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 24px;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

body #system .container .btn:hover {
  background-color: #166B7A;
}

body #error {
  padding: 80px 0 0;
  width: 100%;
  text-align: center;
}

body #error .container {
  min-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}

body #error .container .wsaude-logo {
  width: 240px;
  margin: 0 auto;
}

body #error .container .icon {
  width: 120px;
  margin: 64px auto 0;
}

body #error .container .title {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 700;
}

body #error .container .description {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

body #error .container .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #error .container .buttons .btn {
  text-decoration: none;
  font-size: 14px;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 24px;
  cursor: pointer;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

body #error .container .buttons .btn.home:hover {
  background: #127486;
}

body #error .container .buttons .btn.back {
  border: 2px solid #DADEDE;
  padding: 6px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
}

body #error .container .buttons .btn.back img {
  width: 20px;
  margin-right: 8px;
}

body #error .container .buttons .btn.back:hover {
  background: #DADEDE;
}

body #select {
  padding: 80px 0 0;
  width: 100%;
  text-align: center;
}

body #select .container {
  min-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}

body #select .container .wsaude-logo {
  width: 240px;
  margin: 0 auto;
}

body #select .container .icon {
  width: 120px;
  margin: 64px auto 0;
}

body #select .container .title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 00;
}

body #select .container .description {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

body #select .container .profiles {
  max-width: 480px;
  margin: 24px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body #select .container .profiles .card {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 30% 30% 40%;
      grid-template-rows: 30% 30% 40%;
  -ms-grid-columns: 10% 90%;
      grid-template-columns: 10% 90%;
  width: 100%;
  height: 160px;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid #DADEDE;
  border-radius: 8px;
  background-color: #FDFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

body #select .container .profiles .card .tag {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #select .container .profiles .card .tag img {
  width: 24px;
}

body #select .container .profiles .card .tag.green {
  background-color: #099FBA;
}

body #select .container .profiles .card .tag.black {
  background-color: #02121F;
}

body #select .container .profiles .card .tag.gray {
  background-color: #657173;
}

body #select .container .profiles .card h4 {
  font-size: 18px;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: 2 / 2 / 2 / 2;
}

body #select .container .profiles .card p {
  font-size: 14px;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 3 / 2 / 3 / 4;
  padding: 4px;
}

body #select .container .profiles .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eaf4f7;
  -webkit-clip-path: circle(18% at -15% 100%);
          clip-path: circle(18% at -15% 100%);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  z-index: -2;
}

body #select .container .profiles .card:hover::after {
  -webkit-clip-path: circle(75%);
          clip-path: circle(75%);
}

body #select .container .button {
  margin: 24px 0;
}

body #select .container .button .btn {
  border: 1px solid #DADEDE;
  padding: 8px 32px;
  border-radius: 8px;
  margin-top: 28px;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
  text-decoration: none;
}

body #select .container .button .btn:hover {
  background-color: #166B7A;
}

body #change-password {
  padding: 80px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #change-password .first-column {
  z-index: 1;
  margin: 0 auto;
}

body #change-password .first-column .container {
  min-width: 320px;
  max-width: 380px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
}

body #change-password .first-column .container label {
  font-weight: 500;
}

body #change-password .first-column .container .wsaude-logo {
  width: 280px;
  margin: 0 auto;
}

body #change-password .first-column .container .title {
  margin-top: 64px;
  font-size: 24px;
  font-weight: 700;
}

body #change-password .first-column .container .form .password,
body #change-password .first-column .container .form .recover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}

body #change-password .first-column .container .form .password .input,
body #change-password .first-column .container .form .recover .input {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #DADEDE;
}

body #change-password .first-column .container .form .password .input:focus,
body #change-password .first-column .container .form .recover .input:focus {
  outline: none;
  border-color: #099FBA;
}

body #change-password .first-column .container .form .password p,
body #change-password .first-column .container .form .recover p {
  font-size: 14px;
  margin-top: 8px;
}

body #change-password .first-column .container .form .password .label,
body #change-password .first-column .container .form .recover .label {
  margin-top: 16px;
}

body #change-password .first-column .container .form .recover .btn {
  border: 1px solid #FCFCFC;
  padding: 8px 16px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 600ms ease-in-out;
  transition: background-color 600ms ease-in-out;
}

body #change-password .first-column .container .form a {
  text-decoration: none;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

body #change-password .first-column .container .form a img {
  width: 20px;
  margin-right: 8px;
}

body #change-password .second-column {
  display: none;
}

body #confirm-password {
  padding: 80px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body #confirm-password .first-column {
  z-index: 1;
  margin: 0 auto;
}

body #confirm-password .first-column .container {
  min-width: 320px;
  max-width: 380px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
  text-align: center;
}

body #confirm-password .first-column .container .wsaude-logo {
  width: 280px;
  margin: 0 auto;
}

body #confirm-password .first-column .container .title {
  margin-top: 64px;
  font-size: 24px;
  font-weight: 700;
}

body #confirm-password .first-column .container p {
  margin-top: 8px;
}

body #confirm-password .first-column .container a {
  font-weight: 600;
  -webkit-transition: color 600ms ease-in-out;
  transition: color 600ms ease-in-out;
}

body #confirm-password .first-column .container a.back {
  text-decoration: none;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  padding: 16px;
}

body #confirm-password .first-column .container a.back img {
  width: 20px;
  margin-right: 8px;
}

body #confirm-password .second-column {
  display: none;
}

body #success-password {
  padding: 80px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #success-password .first-column {
  z-index: 1;
  margin: 0 auto;
}

body #success-password .first-column .container {
  min-width: 320px;
  max-width: 380px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
}

body #success-password .first-column .container .wsaude-logo {
  width: 280px;
  margin: 0 auto;
}

body #success-password .first-column .container .success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 64px;
}

body #success-password .first-column .container .success h1, body #success-password .first-column .container .success p {
  margin-top: 32px;
  text-align: center;
}

body #success-password .first-column .container .success p {
  margin-top: 16px;
}

body #success-password .first-column .container .success img {
  width: 72px;
}

body #success-password .first-column .container .title {
  margin-top: 64px;
  font-size: 24px;
  font-weight: 700;
}

body #success-password .first-column .container .form .password,
body #success-password .first-column .container .form .recover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}

body #success-password .first-column .container .form .password .input,
body #success-password .first-column .container .form .recover .input {
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid;
}

body #success-password .first-column .container .form .password .input:focus,
body #success-password .first-column .container .form .recover .input:focus {
  outline: none;
}

body #success-password .first-column .container .form .password p,
body #success-password .first-column .container .form .recover p {
  font-size: 14px;
  margin-top: 8px;
}

body #success-password .first-column .container .form .password .label,
body #success-password .first-column .container .form .recover .label {
  margin-top: 16px;
}

body #success-password .first-column .container .form .recover .btn {
  border: 1px solid #FCFCFC;
  padding: 8px 16px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 600ms ease-in-out;
  transition: background-color 600ms ease-in-out;
}

body #success-password .first-column .container .form a {
  text-decoration: none;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

body #success-password .first-column .container .form a img {
  width: 20px;
  margin-right: 8px;
}

body #success-password .second-column {
  display: none;
}

@media (min-width: 768px) {
  body #content {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
  body #content .first-column {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 /2;
    -webkit-box-shadow: 1px 0 10px -9px #02121F;
            box-shadow: 1px 0 10px -9px #02121F;
  }
  body #content .first-column .container {
    max-width: 380px;
    padding-right: 16px;
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body #content .second-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body #content .second-column .carousel {
    width: 100%;
    margin: auto;
    height: -webkit-fill-available;
    overflow: hidden;
  }
  body #content .second-column .carousel .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: 100%;
  }
  body #content .second-column .carousel .container img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  body #forgot-password {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
  body #forgot-password .first-column {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 /2;
    -webkit-box-shadow: 1px 0 10px -9px #02121F;
            box-shadow: 1px 0 10px -9px #02121F;
  }
  body #forgot-password .first-column .container {
    max-width: 380px;
    padding-right: 16px;
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body #forgot-password .second-column {
    display: block;
    position: relative;
    background-color: #166B7A;
  }
  body #forgot-password .second-column.image {
    position: relative;
    background: url("/static/custom/img/img-notebook.svg") no-repeat center/100%;
    background-size: cover;
  }
  body #system {
    width: 100%;
    text-align: center;
  }
  body #system .container .icon {
    width: 200px;
  }
  body #system .container .title {
    font-size: 40px;
  }
  body #system .container .description {
    font-size: 18px;
  }
  body #system .container .btn {
    margin-top: 40px;
    font-size: 20px;
  }
  body #error {
    width: 100%;
    text-align: center;
  }
  body #error .container .icon {
    width: 200px;
  }
  body #error .container .title {
    font-size: 40px;
  }
  body #error .container .description {
    font-size: 18px;
  }
  body #error .container .buttons .btn {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 400;
  }
  body #select {
    width: 100%;
    text-align: center;
  }
  body #select .container .icon {
    width: 200px;
  }
  body #select .container .title {
    font-size: 40px;
  }
  body #select .container .description {
    font-size: 18px;
  }
  body #select .container .button .btn {
    width: 56px;
    margin-top: 32px;
    font-size: 20px;
    font-weight: 400;
  }
  body #select .container .profiles {
    max-width: 980px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    gap: 16px;
  }
  body #select .container .profiles .card {
    margin: 0;
  }
  body #select .container .profiles .card .tag {
    width: 100%;
    height: 100%;
  }
  body #select .container .profiles .card .tag img {
    width: 32px;
  }
  body #change-password {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
  body #change-password .first-column {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 /2;
    -webkit-box-shadow: 1px 0 10px -9px #02121F;
            box-shadow: 1px 0 10px -9px #02121F;
  }
  body #change-password .first-column .container {
    max-width: 380px;
    padding-right: 16px;
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body #change-password .second-column {
    display: block;
    position: relative;
    background-color: #166B7A;
  }
  body #change-password .second-column.image {
    position: relative;
    background: url("/static/custom/img/img-notebook.svg") no-repeat center/100%;
    background-size: cover;
  }
  body #confirm-password {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
  body #confirm-password .first-column {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 /2;
    -webkit-box-shadow: 1px 0 10px -9px #02121F;
            box-shadow: 1px 0 10px -9px #02121F;
  }
  body #confirm-password .first-column .container {
    max-width: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: initial;
  }
  body #confirm-password .first-column .container .text a {
    font-weight: 600;
  }
  body #confirm-password .second-column {
    display: block;
    position: relative;
    background-color: #166B7A;
  }
  body #confirm-password .second-column.image {
    position: relative;
    background: url("/static/custom/img/img-notebook.svg") no-repeat center/100%;
    background-size: cover;
  }
  body #success-password {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
  body #success-password .first-column {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 /2;
    -webkit-box-shadow: 1px 0 10px -9px #02121F;
            box-shadow: 1px 0 10px -9px #02121F;
  }
  body #success-password .first-column .container {
    max-width: 380px;
    padding-right: 16px;
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body #success-password .second-column {
    display: block;
    position: relative;
    background-color: #166B7A;
  }
  body #success-password .second-column.image {
    display: block;
    position: relative;
    background-color: #166B7A;
  }
  body #success-password .second-column.image.image {
    position: relative;
    background: url("/static/custom/img/img-notebook.svg") no-repeat center/100%;
    background-size: cover;
  }
}
/*# sourceMappingURL=main.css.map */
