body {
    font-family: "Amazon Ember", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

awswaf-captcha, awswaf-captcha * {
    font-family: "Amazon Ember", Helvetica, Arial, sans-serif !important;
}

h1, h2, h3 {
    font-family: "Amazon Ember", Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.c {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 0 24px;
}

.l {
    margin-bottom: 24px;
    width: 200px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .c {
        min-height: 60vh;
        padding: 24px 8px;
    }

    .l {
        width: 150px;
        margin-bottom: 20px;
    }
    body {
        font-size: 1.1em;
    }
}

@font-face {
    font-family: 'Amazon Ember';
    src: url('AmazonEmber-Light.woff2') format('woff2'),
        url('AmazonEmber-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
            radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
            conic-gradient(#0000 30%,#ffa516);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
}
@keyframes l13{
    100%{transform: rotate(1turn)}
}