/* Explain: Base reset and typography defaults for the webinar landing page */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--mint-color) 34%, transparent), transparent 34rem),
        linear-gradient(180deg, color-mix(in srgb, var(--aqua-color) 7%, var(--background-color)), var(--background-color) 34rem);
}

::selection {
    background: var(--aqua-color);
    color: var(--surface-color);
}

button,
a {
    cursor: pointer;
}

input,
button,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--aqua-color) 65%, transparent);
    outline-offset: 3px;
}
