/* =======================
   Base Styles
======================= */
* {
  box-sizing: border-box;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-display: swap;
}

a {
  text-decoration: none;
  color: var(--textColor);
  font-weight: var(--fontBold);
}

/* =======================
   CSS Variables
======================= */
:root {
  --primaryColor: #294882;
  --borderColor: #d1d5db;
  --borderRaduis: 12px;
  --textColor: #374151;
  --fontBold: 500;
}

/* =======================
   Layout: Main Container
======================= */
.main-container {
  width: 100vw;
  position: absolute;
  left: 50%;
  height: 100vh;
  background-color: white;
  transform: translateX(-50%);
}

/* =======================
   Layout: Main Content
======================= */
.main-content {
  position: fixed;
  top: 56px;
  height: calc(100vh - 120px);
  width: 100%;
  overflow-y: scroll;
  padding: 16px;
}

.main-content::-webkit-scrollbar {
  display: none;
  width: 0;
}

.main-content::webkit-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: auto;
}
.main-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* =======================
   Login Section
======================= */
.login_xero_btn {
  display: flex;
  height: 48px;
  padding: 16px 0px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: var(--borderRaduis);
  border: 1px solid var(--borderColor);
}

.login_xero_btn img {
  margin-right: 10px;
}

.login_content {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 343px;
}

.login_banner {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 6;
  margin-bottom: 26px;
}

.login_banner img {
  height: auto;
}

.login_banner h2 {
  margin-bottom: 10px;
}

.login_links {
  margin-top: 24px;
  text-align: center;
}

.header,
.header nav {
  display: flex;
  width: 375px;
  height: 56px;
  padding: 6px 16px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 375/56;
}

.header {
  color: var(--textColor);
  text-align: center;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
}

.xerobtn-logo {
  height: 18px;
  width: 18px;
}

.toast {
  transition: all 1s ease-in-out;
}

@media (min-width: 640px) and (max-width: 1024px) {
  .main-container {
    width: 640px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .main-container {
    width: 768px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .main-container {
    width: 1024px;
    margin: 0 auto;
  }
}
