body{
    background-color: #f1f5f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card{
    background-color:var(--white-color);
    border-radius:12px;
    padding:48px;
      box-shadow: 0px 12px 32px 0px #161C270F;
}

.auth-page_content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.welcome-message {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.6px;
  text-align: center;
  vertical-align: middle;
}

.description {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.auth-page_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.auth-page_content h1.auth-page_title {
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
}

.auth-page_content .auth-page_description {
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
}



.welcome-message{
    color: #121312;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
}

.footer-text {
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-color);
}

.forgot-password{
    font-family: Work Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: var(--primary-color);
    text-decoration: none;
}

.auth{
    background-color: #F4F0E8;
}

/* guest-layout.css additions */

body.auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background-color: #f1f5f9;
}
/* footer.css — minimal overrides on top of Bootstrap */
.site-footer {
    min-height: 56px;
}

.footer-copyright {
    white-space: nowrap;
}

.footer-logos-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-link {
    color: #374151;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #111827;
}

