﻿html, body {
    margin: 0;
    height: 100%;
    font-family: sans-serif;
}

.page-container {
    min-height: 100%; /* take full viewport height */
    display: flex;
    flex-direction: column; /* stack content + footer */
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column; /* stack children vertically */
    justify-content: center; /* center vertically in the viewport */
    align-items: center; /* center horizontally */
}

button {
    padding: 0.5rem 1rem;
    cursor: pointer;
    min-width: 150px;
}

/* Shared container for centered content */
.container {
    text-align: center;
}

/* Auth-specific */
.jwt-container {
    margin-bottom: 1rem;
}

.jwt-text {
    width: 400px;
    margin-right: 0.5rem;
}

.button-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

/* Login-specific */
input {
    margin: 0.5rem 0;
    padding: 0.5rem;
    width: 200px;
}
