@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Overall page: clean, light, Fluent-ish */
/* line 6, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f3f2f1;
  /* Fluent neutral background */
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* Central card: flatter, border first, minimal shadow */
/* line 15, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-card {
  background: #ffffff;
  border: 1px solid #edebe9;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Brand tile: like Microsoft account header block */
/* line 23, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-brand-tile {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #edebe9;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .5px;
  color: #323130;
}

/* Options: list items with hover border, not big lift */
/* line 37, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-option {
  background: #ffffff;
  border: 1px solid #edebe9;
  border-radius: 8px;
  transition: background .12s ease, border-color .12s ease;
}

/* line 44, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-option:hover {
  background: #faf9f8;
  border-color: #c8c6c4;
}

/* Icon tiles: subtle tint, squared */
/* line 50, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid #edebe9;
  background: #faf9f8;
}

/* line 61, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-icon-tile--blue {
  background: rgba(0, 120, 212, 0.08);
  border-color: rgba(0, 120, 212, 0.18);
}

/* line 66, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-icon-tile--green {
  background: rgba(16, 124, 16, 0.08);
  border-color: rgba(16, 124, 16, 0.18);
}

/* Buttons: less rounded, more Fluent */
/* line 72, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-btn {
  border-radius: 4px;
  padding-left: 14px;
  padding-right: 14px;
}

/* Footer: divider vibe */
/* line 79, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-footer {
  border-top: 1px solid #edebe9;
}

/* Focus ring: more Microsoft-y */
/* line 84, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.ms-option:focus-within {
  border-color: #0078d4;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
  background: #ffffff;
}

/* line 90, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.font-title {
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.2px;
}

/* line 99, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.font-sub-title {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

/* line 107, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.font-text {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

/* Hover effect on the login option cards */
/* line 116, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.login-option:hover {
  background-color: #f0fafa !important;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

/* Ensure background image covers without distortion */
/* line 122, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.object-fit-cover {
  object-fit: cover;
}

/* line 126, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.bg-light {
  background-color: #F1F2F4 !important;
}

/* line 130, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.btn-gray {
  background-color: #F1F2F4;
  color: #070B12;
  border: none;
  height: 48px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

/* line 142, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.btn-gray:hover {
  background-color: #EBEEF4;
}

/* line 146, ../../../../Dev/G2/src/webapps/G2.Authentication/wwwroot/sass/main.scss */
.btn-danger {
  background-color: #FDD6D7;
  color: #A50E1E;
  border: none;
  height: 48px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

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