/*
   SubmitInMe · local Tailwind utility subset for laravel-development.aspx.

   The page uses a small set of Tailwind utilities alongside its page-specific
   stylesheet. Keeping only those utilities avoids the runtime CDN compiler
   while preserving the layout that the page was designed to use.
*/

/* IBM Plex Mono variable Roman, Latin1 subset. Licensed under SIL OFL 1.1. */
@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 100 700;
    font-display: swap;
    src: url("../fonts/ibm-plex-mono-latin.woff2") format("woff2"), url("../fonts/ibm-plex-mono-latin.woff") format("woff");
}

/* --------------------------------------------------------------------------
   Tailwind preflight used by this page
   -------------------------------------------------------------------------- */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
}

body {
    margin: 0;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

ol,
ul,
menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    background-color: transparent;
    background-image: none;
}

button,
[role="button"] {
    cursor: pointer;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}

/* --------------------------------------------------------------------------
   Layout and sizing
   -------------------------------------------------------------------------- */
.relative {
    position: relative;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

/* --------------------------------------------------------------------------
   Spacing
   -------------------------------------------------------------------------- */
.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-x-6 {
    column-gap: 1.5rem;
}

.gap-y-3 {
    row-gap: 0.75rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-7 {
    margin-top: 1.75rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-9 {
    margin-top: 2.25rem;
}

.mb-9 {
    margin-bottom: 2.25rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-11 {
    margin-bottom: 2.75rem;
}

.p-8 {
    padding: 2rem;
}

.px-6 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

/* --------------------------------------------------------------------------
   Color and typography
   -------------------------------------------------------------------------- */
.bg-white {
    background-color: #ffffff;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* --------------------------------------------------------------------------
   Responsive utilities used by this page
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:p-10 {
        padding: 2.5rem;
    }

    .md\:pb-20 {
        padding-bottom: 5rem;
    }

    .md\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }

    .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }
}
