/* Base */
:root
{
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --accent: #2563eb;
    --btn: #111827;
    --bg: #ffffff;
}

*,
*::before,
*::after
{
    box-sizing: border-box;
}

html,
body
{
    height: 100%;
}

body
{
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.page
{
    min-height: 100%;
    display: flex;
    justify-content: center;
    padding: 36px 18px;
}

.card
{
    width: 100%;
    max-width: 760px;
    padding: 10px 8px 40px 8px;
}

.logo_wrap
{
    display: flex;
    justify-content: flex-start;
    margin-top: 6px;
    margin-bottom: 18px;
}

.logo_img
{
    width: 92px;
    height: 92px;
    border-radius: 9999px;
    object-fit: cover;
}

.logo_fallback
{
    width: 92px;
    height: 92px;
    border-radius: 9999px;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_text
{
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo_text_small
{
    margin-top: 3px;
    color: #f472b6;
    font-weight: 800;
}

.top_row
{
    height: 28px;
}

.back_link
{
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

.back_link:hover
{
    text-decoration: underline;
}

.title
{
    font-size: 44px;
    line-height: 1.05;
    margin: 22px 0 12px 0;
    font-weight: 800;
}

.subtitle
{
    max-width: 680px;
    margin: 0 0 16px 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

.divider
{
    border: 0;
    border-top: 1px solid var(--line);
    margin: 18px 0 22px 0;
}

.form
{
    margin-top: 8px;
    max-width: 560px;
}

.label
{
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.req
{
    color: #111827;
}

.input,
.textarea
{
    width: 100%;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
}

.input:focus,
.textarea:focus
{
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.textarea
{
    resize: vertical;
    min-height: 128px;
}

.hint
{
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 14px;
}

.btn
{
    margin-top: 18px;
    background: #0b0b0c;
    color: white;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.btn:hover
{
    filter: brightness(1.05);
}

.arrow
{
    font-weight: 800;
}

.check_list
{
    display: grid;
    gap: 12px;
    margin-top: 14px;
    margin-bottom: 10px;
}

.check_row
{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.check_row input[type="checkbox"]
{
    width: 18px;
    height: 18px;
}

.question
{
    font-size: 22px;
    margin: 14px 0 0 0;
    font-weight: 800;
}

.mt_32
{
    margin-top: 32px;
}

.mt_12
{
    margin-top: 12px;
}

.error_box
{
    max-width: 560px;
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #9f1239;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 12px 0 12px 0;
}

.error_box ul
{
    margin: 0;
    padding-left: 18px;
}

.thanks_wrap
{
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding-bottom: 70px;
}

.check_icon
{
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks_title
{
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}

@media (max-width: 720px)
{
    .title
    {
        font-size: 34px;
    }
    .card
    {
        padding-left: 4px;
        padding-right: 4px;
    }
}
