body {
    font-family: 'StellaRepro', Arial, sans-serif;
    background-color: #FFFFFF;
    margin: 0;
}

.header {
    height: 80px;
    display: flex;
    align-items: center;
}

#logo {
    height: 2em;
}

.content-container {
    margin: auto;
}

.headline-large {
    font-weight: 500;
    font-size: 2em;
}

.title-large {
    font-weight: 500;
    font-size: 1.375em;
}

.title-medium {
    font-size: 1em;
    font-weight: 500;
}

.body-small {
    font-size: 0.75em;
    font-weight: 400;
}

.body-medium {
    font-size: 0.875em;
    font-weight: 400;
}

.body-large {
    font-size: 1em;
    font-weight: 400;
}

#main-content>.headline-large {
    margin-bottom: 40px
}

#success-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

#success-content>.headline-large {
    margin-bottom: 8px;
}

#qr-container {
    flex: 0 0 auto;
    padding: 24px;
    background-color: #f2f2f2;
    max-width: 160px;
}

#qr-image {
    height: 160px;
}

.primary {
    color: rgb(255, 92, 0);
}

#list-container {
    margin-top: 40px;
}

.list-item {
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

#stores-container {
    padding: 10px 0 0 40px;
}

.store-image {
    height: 36px;
}

#stores-container {
    display: flex;
    gap: 16px;
}

.form-container {
    width: 360px;
}

.label {
    margin: 40px 0 16px 0;
}

#input-container {
    margin-bottom: 16px;
}

input {
    display: block;
    width: 100%;
    border: #B7B7B7 solid 1px;
    padding: 1em;
    box-sizing: border-box;
}

input.error {
    border: 1px solid #ef3e36;
}

#continue-btn {
    background-color: black;
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#continue-btn>.arrow {
    color: #FF5C00;
}

#continue-btn.disabled {
    color: rgba(0, 0, 0, 0.38);
    background-color: rgba(0, 0, 0, 0.12);
}

#continue-btn.disabled>.arrow {
    color: rgba(0, 0, 0, 0.38);
}

#message {
    color: #ef3e36;
}

#error-container {
    background-color: #ef3e36;
    color: white;
    display: flex;
    align-items: center;
    padding: 16px;
    position: absolute;
    width: 100%;
}

#notfound-content>.headline-large {
    margin-top: 48px;
    margin-bottom: 40px
}

/* --- Mobile styles --- */
@media (max-width: 600px) {
    .header {
        padding-left: 16px;
    }

    .content-container {
        max-width: 100vw;
        min-height: 100vh;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 16px;
    }

    .form-container {
        width: 100%;
    }

    #email-input {
        font-size: 1em;
        padding: 0.75em;
    }
    
    #qr-container {
        display: none;
    }
}

/* --- Desktop styles --- */
@media (min-width: 601px) {
    .header {
        padding-left: 60px;
    }

    .content-container {
        max-width: 900px;
        padding: 120px 60px 60px 60px;
    }
    
    #stores-container {
        display: none;
    }
}

@font-face {
    font-family: 'StellaRepro';
    src: url('fonts/StellaRepro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'StellaRepro';
    src: url('fonts/StellaRepro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}