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

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

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1,
h2 {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f3f3f3;
    color: #171717;
}

main {
    min-height: 100vh;
    height: 100%;
}

.button {
    border: 0;
    padding: 0.8rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #a5eb68;
    border-radius: 4px;
    letter-spacing: 0.25px;
}
.button-primary:active,
.button-primary:hover {
    background-color: #0bac41;
    color: #fff;
}

.button-primary:hover {
    cursor: pointer;
}

.button-login {
    width: 100%;
    font-size: 1.09em;
}

#authContainer {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content {
    background-color: #fff;
    width: 20rem;
    max-width: 50ch;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgb(226 230 227);
}

.auth-content__header {
    margin-bottom: 2rem;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
}

.auth-content__header img {
    width: auto;
    margin-bottom: 0.8rem;
    align-self: center;
}

.auth-content__header h1 {
    font-size: 1.5em;
    font-weight: 700;
}
.auth-content__form {
    margin-bottom: 1rem;
}

.password-form__group {
    margin-bottom: 0.4rem;
}

.password-form__group label {
    display: block;
    font-weight: 700;
    font-size: 0.7em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.password-form__group input {
    width: 100%;
    padding: 0.8rem;
    background: #f3f3f3;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f3f3;
}

#form-error {
    margin-bottom: 0;
    font-size: 0.7em;
    color: red;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    max-height: 0;
}

#form-error.visible {
    opacity: 1;
    visibility: visible;
}

#surveyContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
    height: 100%;
}

.sd-navigation__complete-btn:disabled,
input[type="button"].sd-navigation__complete-btn:disabled {
    background-color: #cccccc;
    color: #000;
    border-color: #bbbbbb;
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
}

.sd-action-bar {
    justify-content: center;
}

.sd-description {
    color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.75)));
}

.sd-page .sd-page__description {
    color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.75)));
}