/* Typography */

h1, h2, h3, h4, h5
{
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

#modal h1
{
    margin: 0 0 1rem;
}

/* Layout */

#overlay
{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fef5e9;
}

#modal
{
    position: relative;
    top: 10%;
    margin: 0 auto;
    padding: 0;
    max-width: 500px;
    min-height: 500px;
    border-radius: 1rem;
    background: white;
    box-shadow: 1px 2px 8px 4px rgba(0, 0, 0, 0.02);
}

#modal,
#modal form,
#modal .content
{
    display: flex;
    flex-direction: column;
}

#modal form,
#modal .content
{
    flex-grow: 1;
}

#logo
{
    height: 1.5rem;
}

#modal .header,
#modal .content,
#modal .footer
{
    display: flex;
    gap: 1rem;

    padding: 2rem;
}

.btn
{
    width: 100%;
}

/* Hide input number arrows */
/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number]
{
    -moz-appearance: textfield;
}

/* Smaller screens */

@media (max-width: 500px)
{
    #modal
    {
        height: 100%;
        width: 100vw;
        top: 0;
    }
}
