*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #1e1c26;
    color: #d0cfe0;
    font-family: monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 44px;
    border-bottom: 1px solid #333;
}

.topBar .site-name {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.08em;
}

.topBar .build-tag {
    font-size: 0.75rem;
    color: #555;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.user-info .label {
    font-size: 0.6rem;
    color: #555;
    letter-spacing: 0.05em;
}

.user-info .alias {
    font-size: 0.8rem;
    color: #d0cfe0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #e8e6f0;
}

p {
    font-size: 0.8rem;
    color: #555;
}

.actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

button {
    font-family: monospace;
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
    background: transparent;
    color: #d1d1d1;
    border: 1px solid #333;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: color 0.15s, border-color 0.15s;
}

button:hover {
    color: #d0cfe0;
    border-color: #666;
}

.authenticate-button {
    background-color: rgb(36, 65, 126);
}

.logout-button {
    background-color: rgb(90, 36, 36);
}