body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #EEEDED;
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer {
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    background: #EEEDED;   
    box-sizing: border-box;
    /* Calculate min-height by deducting footer (80px) */
    min-height: calc(100vh - 80px);
}
.button{
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0px 16px;
    gap: 8px;
    color: #0A8276;
    font-weight: 600;
    border-radius: 1px;
    line-height: 1.5rem;
    font-family: sans-serif;
    font-style: normal;
    text-decoration: none;
    user-select: none;
    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    background-color: #fff;
    border-color: #fff;
    border: 0;

}
 
/* Style the login box */
.login-box {
    background: #0A8276;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 400px;
    width: 100%;
    margin: 0 auto; /* Center horizontally */
    text-align: center;
}

.login-box h2 {
    color: #fff;
}
 
@media (max-width: 480px) {
    .login-box {
        margin: 1rem;
        padding: 1.5rem;
    }
}

ifx-footer {
    flex-shrink: 0;
}

/* General page content centering for auth pages */
.auth-content {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #EEEDED;
    /* Calculate min-height by deducting footer (80px) */
    min-height: calc(100vh - 80px);
}

.auth-message {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 500px;
    width: 100%;
}