*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

:root {
  --text-secondary: #6c6c6c;
  --primary-main: #0099cc;
  --blue-600: #9ecfdf;
  --primary-light: #e2f1f9;
  --primary-dark: #0076a6;
  --error: #ed5050;
  --success: #1ec1a4;
}

body,
html {
  height: 100%;
  background: #F6F8F9 !important;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: auto min-content;
  place-items: center;
  padding: 16px 0px;
}

@supports (height: 100dvh) {
  .page-wrapper {
    min-height: 100dvh;
  }
}

.auth {
  display: flex;
  flex-direction: column;
  width: clamp(280px, 100%, 486px);
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    0px 6px 6px -3px #0000000d,
    0px 10px 14px 1px #0000000d,
    0px 4px 18px 3px #0000000d;
  margin-top: auto;
  margin-bottom: auto;
  justify-self: center;
}

.auth__logo-img {
  max-width: 250px;
  height: auto;
  padding-bottom: 40px;
  display: flex;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.auth__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-middle-gap {
  gap: 24px !important;
}

.form-lower-gap {
  gap: 16px !important;
}

.form__submit-container {
  display: flex;
  justify-content: space-between;
}

.bigger-top-actions {
  margin-top: 24px;
}

.qr__wrapper {
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.qr__wrapper * {
  width: 100%;
  height: 100%;
}

.divider {
  background: #e8e8e8;
  height: 1px;
  width: 100%;
}

.background-overlay {
  background-image: url("../images/background-desktop.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0px 16px;
}

@media (max-width: 768px) {
  .background-overlay {
    background-image: url("../images/background-mobile.svg");
    background-position: 60% center;
    background-size: cover
  }
}
