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

* {
    margin: 0;
}

/*
Color palette derived from logo using https://coolors.co/
*/
:root {
    --floral-white: #fff8f2;
    --floral-white-darker: color-mix(in srgb, var(--floral-white), black 3%);;
    --lavender-veil: #E5DBF2;
    --lavender-veil-darker: #CAB5E5;
    --dim-grey: #6C6869;
    --champagne-mist: #ECDCC2;
    --white: #FFFFFF;
    --dusty-mauve: #AA818F;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: var(--lavender-veil-darker);

    font-size: 18px;
}

button {
    font-size: inherit;
}

main {
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 2rem;
}

footer {
    margin: 2em;
    font-size: 16px;
    text-align: center;
}

.button {
    border: 3px solid var(--dusty-mauve);
    border-radius: 1em;
    height: 2.5em;
    display: flex;
    background-color: var(--floral-white);
}

.button:hover {
    background-color: var(--floral-white-darker);
}

.button > img {
    margin: auto;
}

.logo-hos {
    width: 10em;
    height: 10em;
}

.logo-tiktok {
    height: 1.4em;
}

.logo-instagram {
    height: 2em;
}

.logo-discord {
    height: 1.1em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.4em;
}

form > button {
    align-self: center;
    padding: 0.2em 0.8em;
}

input, option, select, textarea {
    font-size: inherit;
}

textarea {
    resize: none;
}

input[type="checkbox"] {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group > p {
    margin-bottom: 1em;
    font-size: 0.9em;
}

label {
    font-style: italic;
    font-weight: bold;
    margin-bottom: 3px;
}
