/* /Components/Layout/MainLayout.razor.rz.scp.css */
.catchall-main[b-l5yapypcqt] {
    flex: 1;
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* /Components/Pages/Error.razor.rz.scp.css */
.logo-grid[b-t3ya97lov6] {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0;
}

.logo-grid img[b-t3ya97lov6] {
    max-width: 140px;
    height: auto;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: grayscale(10%);
    border-radius: 6px;
}

.logo-grid img:hover[b-t3ya97lov6] {
    transform: scale(1.06);
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-note[b-t3ya97lov6] {
    margin-top: 2.5rem;
    color: #f07178;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.attempted-url[b-t3ya97lov6] {
    color: #d8e4ee;
    font-size: 0.95rem;
    margin: 1.25rem auto;
    padding: 0.85rem 1rem;
    max-width: 36rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(100, 180, 255, 0.25);
    text-align: left;
}

.attempted-url code[b-t3ya97lov6] {
    color: #8ec8ff;
    font-weight: 600;
    word-break: break-all;
    background: rgba(52, 152, 219, 0.12);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
}
/* /Components/Public/Contact/CatchAllContactForm.razor.rz.scp.css */
/* InputText / InputTextArea render native elements without this component's scope attribute — use ::deep. */

.catchall-contact[b-3gy4tiz9pn] {
    margin: 2.5rem auto 0;
    width: 100%;
    max-width: 28rem;
    text-align: left;
}

.catchall-contact__intro[b-3gy4tiz9pn] {
    margin: 0 0 1.25rem;
    text-align: center;
    color: rgba(240, 245, 250, 0.88);
    font-size: 1rem;
    line-height: 1.55;
}

.catchall-contact__form[b-3gy4tiz9pn] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 1.35rem 1.25rem 1.2rem;
    border-radius: 12px;
    background: rgba(12, 22, 32, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.catchall-field[b-3gy4tiz9pn] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    width: 100%;
    padding-bottom: 1.35rem;
    text-align: left;
}

.catchall-field:last-child[b-3gy4tiz9pn] {
    padding-bottom: 0;
}

.catchall-field__label[b-3gy4tiz9pn] {
    display: block;
    width: 100%;
    text-align: left;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(220, 230, 240, 0.85);
}

.catchall-field__control[b-3gy4tiz9pn] {
    position: relative;
    width: 100%;
}

.catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0.7rem 0.85rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    color: #f4f7fa;
    background: rgba(8, 16, 24, 0.65);
    border: 1.5px solid rgba(160, 180, 200, 0.35);
    border-radius: 8px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input::placeholder {
    color: rgba(180, 195, 210, 0.55);
}

.catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input:hover:not(:disabled) {
    border-color: rgba(180, 200, 220, 0.55);
    background: rgba(10, 20, 30, 0.75);
}

.catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input:focus {
    outline: none;
    border-color: rgba(100, 180, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(80, 160, 255, 0.22);
    background: rgba(10, 22, 34, 0.85);
}

.catchall-field__control[b-3gy4tiz9pn]  textarea.catchall-field__input {
    min-height: 6.5rem;
    resize: vertical;
}

.catchall-field--invalid .catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input {
    border-color: #f07178;
    background: rgba(48, 14, 18, 0.45);
    box-shadow: 0 0 0 3px rgba(240, 113, 120, 0.2);
}

.catchall-field--invalid .catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input:focus {
    border-color: #ff8a90;
    box-shadow: 0 0 0 3px rgba(255, 120, 128, 0.28);
}

.catchall-field--valid .catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input:not(:focus) {
    border-color: rgba(72, 199, 142, 0.55);
}

.catchall-field__tooltip[b-3gy4tiz9pn] {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    z-index: 20;
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    line-height: 1.4;
    border-radius: 7px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.catchall-field__tooltip--hint[b-3gy4tiz9pn] {
    color: #e8eef4;
    background: rgba(20, 36, 52, 0.96);
    border: 1px solid rgba(120, 160, 200, 0.35);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

.catchall-field__tooltip--error[b-3gy4tiz9pn] {
    color: #fff5f5;
    background: rgba(120, 28, 36, 0.96);
    border: 1px solid rgba(255, 120, 130, 0.45);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

.catchall-field__tooltip[b-3gy4tiz9pn]::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 1.1rem;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    background: inherit;
    border-left: inherit;
    border-top: inherit;
}

.catchall-field__control:hover .catchall-field__tooltip--hint[b-3gy4tiz9pn],
.catchall-field__control:focus-within .catchall-field__tooltip--hint[b-3gy4tiz9pn] {
    opacity: 1;
    transform: translateY(0);
}

.catchall-field--invalid .catchall-field__tooltip--error[b-3gy4tiz9pn] {
    opacity: 1;
    transform: translateY(0);
}

.catchall-field--invalid .catchall-field__control[b-3gy4tiz9pn] {
    margin-bottom: 2.1rem;
}

.catchall-field--turnstile[b-3gy4tiz9pn] {
    align-items: center;
    gap: 0.45rem;
    padding-bottom: 1rem;
}

.catchall-field--turnstile > .catchall-field__label[b-3gy4tiz9pn] {
    width: 100%;
    align-self: stretch;
    text-align: left;
}

.catchall-field__turnstile-wrap[b-3gy4tiz9pn] {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 0.4rem 0.5rem;
    line-height: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(200, 210, 220, 0.45);
}

/* Let Cloudflare size the widget (normal ≈ 300×65px); only pierce the child container */
.catchall-field__turnstile-wrap[b-3gy4tiz9pn]  > div {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 0;
}

.catchall-field__turnstile-error[b-3gy4tiz9pn] {
    margin: 0;
    font-size: 0.8125rem;
    color: #ff9aa0;
    text-align: center;
}

.catchall-field--actions[b-3gy4tiz9pn] {
    display: flex;
    justify-content: center;
    margin-top: 0.15rem;
}

.catchall-contact__submit[b-3gy4tiz9pn] {
    width: auto;
    min-width: 10.5rem;
    max-width: 100%;
    padding: 0.6rem 1.35rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #e85d5d 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(232, 93, 93, 0.3);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.15s ease;
}

.catchall-contact__submit:hover:not(:disabled)[b-3gy4tiz9pn] {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232, 93, 93, 0.38);
}

.catchall-contact__submit:active:not(:disabled)[b-3gy4tiz9pn] {
    transform: translateY(0);
}

.catchall-contact__submit:disabled[b-3gy4tiz9pn] {
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(90, 100, 115, 0.55);
    box-shadow: none;
}

.catchall-contact__status[b-3gy4tiz9pn] {
    margin: 0;
    padding: 0.8rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.925rem;
    line-height: 1.45;
    border-radius: 8px;
}

.catchall-contact__status--success[b-3gy4tiz9pn] {
    color: #7ddea8;
    background: rgba(72, 199, 142, 0.12);
    border: 1px solid rgba(72, 199, 142, 0.35);
}

.catchall-contact__status--error[b-3gy4tiz9pn] {
    color: #ffb4b8;
    background: rgba(240, 113, 120, 0.12);
    border: 1px solid rgba(240, 113, 120, 0.35);
}

@media (max-width: 600px) {
    .catchall-contact[b-3gy4tiz9pn] {
        max-width: 100%;
    }

    .catchall-contact__form[b-3gy4tiz9pn] {
        padding: 1.15rem 1rem 1rem;
    }

    .catchall-field[b-3gy4tiz9pn] {
        padding-bottom: 1.15rem;
    }

    .catchall-field__tooltip[b-3gy4tiz9pn] {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catchall-field__control[b-3gy4tiz9pn]  .catchall-field__input,
    .catchall-field__tooltip[b-3gy4tiz9pn],
    .catchall-contact__submit[b-3gy4tiz9pn] {
        transition: none;
    }
}
