body {
    color: var(--white);
    font-family: "Space Mono", monospace;
        font-weight: 400;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin: 0;
}

:root {
    --red: #B43212;
    --orange: #DC8F0A;
    --yellow: #facd38;
    --white: #e8e8e8;
    --blue: #454549bb;
}

iframe{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow-x: hidden;
    background-color: #000000;
    object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    #background iframe {
        /* height = 100 * (9 / 16) = 56.25 */
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    #background iframe {
        /* width = 100 / (9 / 16) = 177.777777 */
        width: 177.78vh;
    }
}

.list{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: .4rem;
    text-align: left;
    align-items: center;

}

.list svg{
    width: 30px;
    height: 30px;
}

.container {
    width: 520px;
    max-width: 92vw;
}

.card {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 18px;
    background: var(--blue);
    margin-bottom: 18px;
}

h1 {
    text-align: center;
    margin: 0 0 10px;
    color: var(--red);
}

h2{
    color: var(--orange);
    font-size: 1.2rem;
}

.regular{
    font-size: 1rem;
}

h3 {
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
    font-size: 1rem;
    color: var(--white);
}

label {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
}

input,
select,
button,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #333;
    background: #141414;
    color: var(--white);
    font-size: 1rem;
}

button {
    cursor: pointer;
    background: var(--orange);
    color: black;
    font-weight: bold;
    border: none;
    margin-top: 16px;
}

button:hover {
    opacity: 0.85;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .row {
        grid-template-columns: 1fr;
    }
}

.checkline {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--white);
}

.checkline input {
    width: auto;
    margin-top: 3px;
}

.small {
    font-size: 12px;
    color: #bdbdbd;
    margin-top: 6px;
}

/* Locked section look */
.locked {
    opacity: 0.5;
    filter: grayscale(1);
    pointer-events: none;
}