/* Overall page: clean, light, Fluent-ish */
.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 */
.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 */
.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: 0.5px;
  color: #323130;
}

/* Options: list items with hover border, not big lift */
.ms-option {
  background: #ffffff;
  border: 1px solid #edebe9;
  border-radius: 8px;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.ms-option:hover {
  background: #faf9f8;
  border-color: #c8c6c4;
}

/* Icon tiles: subtle tint, squared */
.ms-icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid #edebe9;
  background: #faf9f8;
}

.ms-icon-tile--blue {
  background: rgba(0, 120, 212, 0.08);
  border-color: rgba(0, 120, 212, 0.18);
}

.ms-icon-tile--green {
  background: rgba(16, 124, 16, 0.08);
  border-color: rgba(16, 124, 16, 0.18);
}

/* Buttons: less rounded, more Fluent */
.ms-btn {
  border-radius: 4px;
  padding-left: 14px;
  padding-right: 14px;
}

/* Footer: divider vibe */
.ms-footer {
  border-top: 1px solid #edebe9;
}

/* Focus ring: more Microsoft-y */
.ms-option:focus-within {
  border-color: #0078d4;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
  background: #ffffff;
}

.font-title {
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.2px;
}

.font-sub-title {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.font-text {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

/* Hover effect on the login option cards */
.login-option:hover {
  background-color: #f0fafa !important;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

/* Ensure background image covers without distortion */
.object-fit-cover {
  object-fit: cover;
}

.bg-light {
  background-color: #F1F2F4 !important;
}

.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%;
}

.btn-gray:hover {
  background-color: #EBEEF4;
}

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