:root {
    --surface-background: #F7F4ED;
    --highlight-color: #FF6E5C;
    --top-bar-color: #000000;
    --default-border-color: rgba(0, 0, 0, 0.13);
    --default-border-radius: 16px;
}

body {
    margin: 0;
    background: var(--surface-background);
}
body.iframe-content {
    background: #ffffff;
}
body.iframe-content .justy-container .header {
    display: none;
}

.justy-container {
    margin: 16px;
    font-family: 'Noto Sans', serif;
    color: var(--top-bar-color);
}

.justy-container .header {
    margin-bottom: 8px;
}
.justy-container .centered {
    text-align: center;
}
.justy-container .hidden {
    display: none;
}
.justy-container .spacer {
    height: 48px;
}

.justy-container a {
    color: var(--highlight-color);
}

.justy-container button {
    background-color: var(--highlight-color);
    border: none;
    color: #ffffff;
    min-width: 146px;
    min-height: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 17px;
    line-height: 129%;
    letter-spacing: -0.408px;
    border-radius: 8px;
    cursor: pointer;
}
.justy-container button:disabled {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.justy-container button:active {
    opacity: 0.75;
}
