<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">h1 {
    user-select: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;

        @media (min-width: 800px) {
            grid-template-columns: 1fr 1fr;
        }
    }

    label {
        border: 1px solid var(--theme-10) !important;
        border-radius: 0.25rem;
        padding: 0.5rem;
        display: flex;

        input {
            flex-grow: 1;
            border: none !important;
            margin-left: 0.5rem;
            font-weight: 400;
        }
    }
}

.error-message {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}
</pre></body></html>