html {
    font-size: 16px;
    box-sizing: border-box;
}

body {
    background: #f3f0e7;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.auth-page {
    margin: auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 45em;
    height: 100%;
}

.auth-page .auth-page-content {
    padding: 16px 16px;
    width: 100%;
}

.auth-page a img {
    margin-top: 50px;
}

@media only screen and (min-width: 750px) {
    .auth-page .auth-page-content {
        width: calc(100% - 18em);
    }
}

.href-target {
    position: absolute;
    top: -2em;
}

form {
    background: #fff;
    padding: 2em;
    border-radius: 0.75rem;
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    font-size: 0.875rem;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

form h1 {
    font-weight: 500;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.75rem;
}

form strong {
    font-weight: 500;
    color: #000;
}

form ul {
    margin-top: 0.5em;
    padding-left: 1em;
    list-style-type: disc;
}

button {
    border: none;
    padding: 0;
    margin: 0;
}

.action-buttons {
    background: #f1f1f1;
    margin: 2em -2em -2em;
    padding: 1.5em 2em;
}

.action-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}
