/* Native reset and shared semantic primitives. */

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

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
    appearance: button;
    background: transparent;
}

button,
[role="button"] {
    cursor: pointer;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

table {
    border-collapse: collapse;
    border-color: inherit;
}

ul,
ol,
menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

:disabled {
    cursor: default;
}

.container {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.auth-divider::before,
.auth-divider::after {
    height: 1px;
    flex: 1 1 auto;
    background: #e5e7eb;
    content: "";
}
