body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: .875rem;
    line-height: 1.25rem;
    background-color: rgba(249,250,251, 100);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical (because column) */
    align-items: center; /* horizontal */
    min-height: 100vh; /* fill the viewport */
    margin-left: auto;
    margin-right: auto;
}

.container > div {
    max-width: 28rem;
    padding: 2.5rem 3rem;
    width: 100%;

    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-color: rgba(229,231,235, 100)
}

.logo {
    display: flex;
    flex-direction: column; /* stack img above h1 */
    align-items: center; /* horizontal centering */
    text-align: center; /* center text inside */
    gap: 0.5rem; /* spacing between img and h1 */
    padding-top: 1rem;
}

/* optional: remove inline-gap under images in some layouts */
.logo img {
    display: block;
}


.logo h1 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;

}

form {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

input {
    width: 100%;
    padding: .5rem .75rem;
    border-radius: .375rem;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(209, 213, 219);
}

input {
    box-shadow: rgba(0, 0, 0, 0) 0 0 0 0, rgba(0, 0, 0, 0) 0 0 0 0, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

.button {
    width: 100%;
    padding: .5rem 1rem;
    background-color: rgba(79,70,229,100);
    border-radius: .375rem;
    border-style: solid;
    border-color: rgba(79,70,229,100);
    color: #fff;
}

.button a {
    color: #fff;
    text-decoration: none;
}

.button.logout {
    background-color: #BA2531;
    border-color: #BA2531;

}

.section-label{
    font: 600 1rem/1.4 system-ui, sans-serif;
    display:flex; align-items:center; gap:.75rem; margin:1.5rem 0;
}
.section-label::before,
.section-label::after{
    content:""; flex:1; border-top:1px solid #e5e7eb;
}
.section-label > span{ white-space:nowrap; color:#374151; }
