/* =============================================================================
   eol-ds Theme - End-of-Life Dataset Keycloak Login Theme
   ============================================================================= */

/* =============================================================================
   1. Font Faces
   ============================================================================= */

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal-light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal-extrabold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Cereal";
    src: url("../fonts/cereal-black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

/* =============================================================================
   2. CSS Variables
   ============================================================================= */

:root {
    /* Font */
    --font-sans:
            "Cereal", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
            "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Brand */
    --hd-gradient: linear-gradient(90.27deg, #f926e1 0.22%, #2ab5fb 99.76%);
    --hd-fuchsia-600: #c026d3;
    --hd-fuchsia-500: #d946ef;

    /* Text */
    --text-primary: #111827;
    --text-secondary: #555555;
    --text-muted: #787878;
    --text-placeholder: #9ca3af;

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f1f1f1;
    --bg-hover: #e8e8e8;
    --bg-icon-pink: #fce7f3;

    /* Borders */
    --border-color: #e2e8f0;
    --border-light: #e4e4e4;
    --border-input: #eaeaea;
    --separator-color: #cdcdcd;

    /* Links */
    --link-color: #c026d3;

    /* States */
    --disabled-bg: #d1d5db;
    --disabled-text: #9ca3af;

    /* Alerts */
    --error-color: #dc2626;
    --error-bg: #fef2f2;
    --error-border: #fecaca;
    --success-color: #166534;
    --success-bg: #f0fdf4;
    --success-border: #bbf7d0;
    --warning-color: #854d0e;
    --warning-bg: #fef9c3;
    --warning-border: #fde047;
    --info-color: #1e40af;
    --info-bg: #eff6ff;
    --info-border: #bfdbfe;

    /* Spacing */
    --content-padding: 68px;
    --content-padding-mobile: 24px;
    --content-padding-xs: 16px;
}

/* =============================================================================
   3. Base Styles
   ============================================================================= */

html {
    height: auto;
    min-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

body#keycloak-bg {
    background: var(--bg-primary);
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
}

/* Gradient blur effects */
body#keycloak-bg::before,
body#keycloak-bg::after {
    content: "";
    position: fixed;
    top: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--hd-gradient);
    opacity: 0.35;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

body#keycloak-bg::before {
    left: 0;
    transform: translateY(-50%) translateX(-70%);
}

body#keycloak-bg::after {
    right: 0;
    transform: translateY(-50%) translateX(70%);
}

/* =============================================================================
   6. Brand Header
   ============================================================================= */

.eol-brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eol-product-name {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    text-transform: none;
}

/* =============================================================================
   7. Typography
   ============================================================================= */

h1#kc-page-title,
.pf-v5-c-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 100%;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
}

.eol-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
}

/* =============================================================================
   8. Forms & Inputs
   ============================================================================= */

.eol-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    margin-top: 16px;
}

.eol-form-group:first-child {
    margin-top: 0;
}

#kc-update-profile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pf-v5-c-form__required-field-indicator {
    display: none;
}

.pf-v5-c-form__group {
    margin-bottom: 0;
}

.pf-v5-c-form__helper-text {
    margin-top: 6px;
    font-size: 12px;
}

.pf-v5-c-helper-text__item.pf-m-error,
.pf-v5-c-form__helper-text .pf-m-error {
    color: var(--error-color);
}

/* Required asterisk styling */
.pf-v5-c-form__label-required {
    color: var(--error-color);
    margin-left: 2px;
}

.pf-v5-c-form__label,
label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pf-v5-c-form-control {
    all: unset;
    display: block;
    width: 100%;
}

.pf-v5-c-form-control::before,
.pf-v5-c-form-control::after {
    display: none !important;
}

input[type="email"],
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.15s ease;
    box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: var(--hd-fuchsia-600);
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

input::placeholder {
    color: var(--text-placeholder);
}

input[type="email"]:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"][readonly],
input[type="text"][readonly],
input[type="password"][readonly] {
    background-color: var(--bg-secondary) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Input error state */
.eol-input-error {
    display: block;
    color: var(--error-color);
    font-size: 12px;
    margin-top: 6px;
}

.has-error input,
input.error {
    border-color: var(--error-color);
}

/* =============================================================================
   9. Buttons
   ============================================================================= */

.pf-v5-c-button.pf-m-primary,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 12px;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    line-height: 24px;
    color: var(--bg-primary);
    background: #ce00b7;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 0;
    text-align: center;
}

.eol-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pf-v5-c-button.pf-m-primary:hover:not(:disabled),
button[type="submit"]:hover:not(:disabled) {
    background: var(--hd-fuchsia-500);
}

.pf-v5-c-button.pf-m-primary:disabled,
button[type="submit"]:disabled {
    background: var(--disabled-bg);
    color: var(--disabled-text);
    cursor: not-allowed;
}

/* Link styled as button */
a.pf-v5-c-button.pf-m-primary {
    text-decoration: none;
}

button.eol-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 12px;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    line-height: 24px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-input);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-top: 12px;
}

button.eol-btn-secondary:hover {
    background: var(--bg-hover);
}

/* =============================================================================
   10. Social/SSO Section
   ============================================================================= */

.eol-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    font-family: Cereal, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-secondary);
}

.eol-divider::before,
.eol-divider::after {
    content: "";
    flex: 1;
    height: 0;
    border-top: 1px solid var(--border-light);
}

.eol-divider span {
    padding: 0 16px;
}

.eol-social-providers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

a.eol-social-button,
a.eol-social-button:link,
a.eol-social-button:visited,
a.eol-social-button:hover,
a.eol-social-button:active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 388px;
    height: 48px;
    padding: 12px;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary) !important;
    background: var(--bg-secondary);
    border: 1px solid var(--border-input);
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.15s ease;
    cursor: pointer;
    margin: 0 auto;
}

a.eol-social-button:hover {
    background: var(--bg-hover);
}

.eol-social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =============================================================================
   11. Footer
   ============================================================================= */

.eol-footer-wrapper {
    width: 100%;
    padding-top: 48px;
    flex-shrink: 0;
}

.eol-footer {
    text-align: center;
    padding: 0;
    width: 100%;
    font-size: 14px;
}

.eol-footer a {
    font-weight: bold;
    color: var(--text-muted);
    text-decoration: underline;
}

.eol-footer a:hover {
    color: var(--text-primary);
}

.eol-footer-separator {
    color: var(--separator-color);
    margin: 0 8px;
}

/* Login/Register links */
.eol-login-link,
.eol-register-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 24px;
}

.eol-login-link a,
.eol-register-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--link-color);
    text-decoration: underline;
}

/* =============================================================================
   12. Alerts & Messages
   ============================================================================= */

.pf-v5-c-alert {
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.pf-v5-c-alert.pf-m-danger {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-color);
}

.pf-v5-c-alert.pf-m-success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-color);
}

.pf-v5-c-alert.pf-m-warning {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    color: var(--warning-color);
}

.pf-v5-c-alert.pf-m-info {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    color: var(--info-color);
}

/* =============================================================================
   13. Email Confirmation Page
   ============================================================================= */

/* Hide default Keycloak feedback message on email verification pages */
body:has(.eol-email-sent) .pf-v5-c-alert:has(.kc-feedback-text) {
    display: none;
}

.eol-email-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.eol-email-icon svg {
    width: 68px;
    height: 68px;
}

.eol-email-sent {
    text-align: center;
}

.eol-email-sent-text {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}

.eol-email-sent-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* =============================================================================
   14. Error Page
   ============================================================================= */

.eol-error-page {
    text-align: center;
    padding: 0 var(--content-padding);
}

.eol-error-message {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 32px;
}

.eol-error-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.eol-gradient-text {
    background: var(--hd-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a.eol-error-btn-primary,
a.eol-error-btn-primary:link,
a.eol-error-btn-primary:visited,
a.eol-error-btn-primary:hover,
a.eol-error-btn-primary:active {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-sans);
    color: #ffffff !important;
    background: var(--hd-gradient) !important;
    border: none !important;
    border-radius: 8px;
    text-decoration: none !important;
    cursor: pointer;
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

a.eol-error-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

a.eol-error-btn-secondary,
a.eol-error-btn-secondary:link,
a.eol-error-btn-secondary:visited,
a.eol-error-btn-secondary:hover,
a.eol-error-btn-secondary:active {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-sans);
    color: var(--text-primary) !important;
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease;
}

a.eol-error-btn-secondary:hover {
    background: var(--bg-secondary) !important;
}

.eol-error-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-primary);
    background: #ce00b7;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.eol-error-link:hover {
    background: var(--hd-fuchsia-500);
    color: var(--bg-primary);
}

/* =============================================================================
   15. Select Fields
   ============================================================================= */

select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.15s ease;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--hd-fuchsia-600);
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

select:disabled {
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

/* =============================================================================
   16. ToS Checkbox
   ============================================================================= */

.eol-tos-group {
    margin-top: 8px;
}

.eol-tos-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    margin-bottom: 0;
}

.eol-tos-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #ce00b7;
    cursor: pointer;
}

.eol-tos-label a {
    color: var(--link-color);
    text-decoration: underline;
}

.eol-tos-label a:hover {
    color: var(--hd-fuchsia-500);
}

/* =============================================================================
   17. Dev Notice
   ============================================================================= */

.eol-dev-notice {
    margin: 16px var(--content-padding) 0;
    padding: 12px 16px;
    background: var(--warning-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--warning-color);
}

.eol-dev-notice strong {
    color: #a16207;
}

.eol-dev-notice a {
    color: var(--link-color);
    font-weight: 500;
}

/* =============================================================================
   18. Responsive Breakpoints
   ============================================================================= */

/* Hide gradient blurs on tablets and below */
@media (max-width: 1024px) {
    body#keycloak-bg::before,
    body#keycloak-bg::after {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 560px) {
    body#keycloak-bg {
        padding: 24px 16px;
    }

    .eol-footer-wrapper {
        padding-top: 0;
    }

    h1#kc-page-title,
    .pf-v5-c-title {
        font-size: 32px;
    }

    .eol-dev-notice {
        margin: 16px var(--content-padding-mobile) 0;
    }

    .eol-email-sent-text {
        padding: 0 var(--content-padding-mobile);
    }

    .eol-error-page {
        padding: 0 var(--content-padding-mobile);
    }

    .eol-error-btn-primary,
    .eol-error-btn-secondary {
        max-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    h1#kc-page-title,
    .pf-v5-c-title {
        font-size: 28px;
    }

    .eol-dev-notice {
        margin: 16px var(--content-padding-xs) 0;
    }

    .eol-email-sent-text {
        padding: 0 var(--content-padding-xs);
    }

    .eol-error-page {
        padding: 0 var(--content-padding-xs);
    }
}

/*

  New styles for updated login page

*/
#promo {
    :where(h1, h2, h3, h4, h5, h6) {
        font-size: var(--text-5xl);
        --tw-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold);
    }

    :where(a){
        color: white;
        text-decoration: underline;
    }

    :where(
    html,
    body,
    p,
    ol,
    ul,
    li,
    dl,
    dt,
    dd,
    blockquote,
    figure,
    fieldset,
    legend,
    textarea,
    pre,
    iframe,
    hr,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6
  ) {
        margin: unset;
        padding: unset;
    }

    :where(img, embed, iframe, object, audio, video) {
        height: unset;
        max-width: unset;
    }

    .mb-4 {
        margin-bottom: calc(var(--spacing) * 4) !important;
    }

    .mb-8 {
        margin-bottom: calc(var(--spacing) * 8) !important;
    }

    .mb-6 {
        margin-bottom: calc(var(--spacing) * 6) !important;
    }
}

/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
@layer properties {
    @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or
    ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
        *,
        :before,
        :after {
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial;
            --tw-border-style: solid;
            --tw-gradient-position: initial;
            --tw-gradient-from: #0000;
            --tw-gradient-via: #0000;
            --tw-gradient-to: #0000;
            --tw-gradient-stops: initial;
            --tw-gradient-via-stops: initial;
            --tw-gradient-from-position: 0%;
            --tw-gradient-via-position: 50%;
            --tw-gradient-to-position: 100%;
            --tw-leading: initial;
            --tw-font-weight: initial;
            --tw-tracking: initial;
            --tw-shadow: 0 0 #0000;
            --tw-shadow-color: initial;
            --tw-shadow-alpha: 100%;
            --tw-inset-shadow: 0 0 #0000;
            --tw-inset-shadow-color: initial;
            --tw-inset-shadow-alpha: 100%;
            --tw-ring-color: initial;
            --tw-ring-shadow: 0 0 #0000;
            --tw-inset-ring-color: initial;
            --tw-inset-ring-shadow: 0 0 #0000;
            --tw-ring-inset: initial;
            --tw-ring-offset-width: 0px;
            --tw-ring-offset-color: #fff;
            --tw-ring-offset-shadow: 0 0 #0000;
        }
        ::backdrop {
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial;
            --tw-border-style: solid;
            --tw-gradient-position: initial;
            --tw-gradient-from: #0000;
            --tw-gradient-via: #0000;
            --tw-gradient-to: #0000;
            --tw-gradient-stops: initial;
            --tw-gradient-via-stops: initial;
            --tw-gradient-from-position: 0%;
            --tw-gradient-via-position: 50%;
            --tw-gradient-to-position: 100%;
            --tw-leading: initial;
            --tw-font-weight: initial;
            --tw-tracking: initial;
            --tw-shadow: 0 0 #0000;
            --tw-shadow-color: initial;
            --tw-shadow-alpha: 100%;
            --tw-inset-shadow: 0 0 #0000;
            --tw-inset-shadow-color: initial;
            --tw-inset-shadow-alpha: 100%;
            --tw-ring-color: initial;
            --tw-ring-shadow: 0 0 #0000;
            --tw-inset-ring-color: initial;
            --tw-inset-ring-shadow: 0 0 #0000;
            --tw-ring-inset: initial;
            --tw-ring-offset-width: 0px;
            --tw-ring-offset-color: #fff;
            --tw-ring-offset-shadow: 0 0 #0000;
        }
    }
}
@layer theme {
    :root,
    :host {
        --font-sans:
                ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
                "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        --font-mono:
                ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
                "Courier New", monospace;
        --color-red-50: #fef2f2;
        --color-red-500: #fb2c36;
        --color-red-700: #bf000f;
        --color-amber-50: #fffbeb;
        --color-amber-700: #b75000;
        --color-green-50: #f0fdf4;
        --color-green-400: #05df72;
        --color-green-700: #008138;
        --color-cyan-400: #00d2ef;
        --color-blue-50: #eff6ff;
        --color-blue-700: #1447e6;
        --color-purple-400: #c07eff;
        --color-fuchsia-500: #e12afb;
        --color-fuchsia-600: #c600db;
        --color-pink-100: #fce7f3;
        --color-pink-400: #fb64b6;
        --color-pink-500: #f6339a;
        --color-pink-600: #e30076;
        --color-pink-700: #c4005c;
        --color-gray-50: #f9fafb;
        --color-gray-100: #f3f4f6;
        --color-gray-200: #e5e7eb;
        --color-gray-300: #d1d5dc;
        --color-gray-400: #99a1af;
        --color-gray-500: #6a7282;
        --color-gray-600: #4a5565;
        --color-gray-700: #364153;
        --color-gray-800: #1e2939;
        --color-gray-900: #101828;
        --color-black: #000;
        --color-white: #fff;
        --spacing: 0.25rem;
        --text-xs: 0.75rem;
        --text-xs--line-height: calc(1 / 0.75);
        --text-sm: 0.875rem;
        --text-sm--line-height: calc(1.25 / 0.875);
        --text-base: 1rem;
        --text-base--line-height: calc(1.5 / 1);
        --text-lg: 1.125rem;
        --text-lg--line-height: calc(1.75 / 1.125);
        --text-2xl: 1.5rem;
        --text-2xl--line-height: calc(2 / 1.5);
        --text-3xl: 1.875rem;
        --text-3xl--line-height: calc(2.25 / 1.875);
        --text-4xl: 2.25rem;
        --text-4xl--line-height: calc(2.5 / 2.25);
        --text-5xl: 3rem;
        --text-5xl--line-height: 1;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;
        --tracking-tight: -0.025em;
        --leading-tight: 1.25;
        --radius-md: 0.375rem;
        --radius-lg: 0.5rem;
        --radius-2xl: 1rem;
        --radius-4xl: 2rem;
        --default-transition-duration: 0.15s;
        --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        --default-font-family: var(--font-sans);
        --default-mono-font-family: var(--font-mono);
    }
    @supports (color: lab(0% 0 0)) {
        :root,
        :host {
            --color-red-50: lab(96.5005% 4.18508 1.52328);
            --color-red-500: lab(55.4814% 75.0732 48.8528);
            --color-red-700: lab(40.4273% 67.2623 53.7441);
            --color-amber-50: lab(98.6252% -0.635922 8.42309);
            --color-amber-700: lab(47.2709% 42.9082 69.2966);
            --color-green-50: lab(98.1563% -5.60117 2.75915);
            --color-green-400: lab(78.503% -64.9265 39.7492);
            --color-green-700: lab(47.0329% -47.0239 31.4788);
            --color-cyan-400: lab(76.6045% -40.9406 -29.6231);
            --color-blue-50: lab(96.492% -1.14644 -5.11479);
            --color-blue-700: lab(36.9089% 35.0961 -85.6872);
            --color-purple-400: lab(63.6946% 47.6127 -59.2066);
            --color-fuchsia-500: lab(56.4256% 83.132 -64.639);
            --color-fuchsia-600: lab(47.5131% 83.4271 -63.0363);
            --color-pink-100: lab(93.5864% 9.01193 -3.15079);
            --color-pink-400: lab(64.5597% 64.3615 -12.7988);
            --color-pink-500: lab(56.9303% 76.8162 -8.07021);
            --color-pink-600: lab(49.5493% 79.8381 2.31768);
            --color-pink-700: lab(42.1737% 71.8009 7.42233);
            --color-gray-50: lab(98.2596% -0.247031 -0.706708);
            --color-gray-100: lab(96.1596% -0.0823438 -1.13575);
            --color-gray-200: lab(91.6229% -0.159115 -2.26791);
            --color-gray-300: lab(85.1236% -0.612259 -3.7138);
            --color-gray-400: lab(65.9269% -0.832707 -8.17473);
            --color-gray-500: lab(47.7841% -0.393182 -10.0268);
            --color-gray-600: lab(35.6337% -1.58697 -10.8425);
            --color-gray-700: lab(27.1134% -0.956401 -12.3224);
            --color-gray-800: lab(16.1051% -1.18239 -11.7533);
            --color-gray-900: lab(8.11897% 0.811279 -12.254);
        }
    }
}
@layer base {
    *,
    :after,
    :before {
        box-sizing: border-box;
        border: 0 solid;
        margin: 0;
        padding: 0;
    }
    ::backdrop {
        box-sizing: border-box;
        border: 0 solid;
        margin: 0;
        padding: 0;
    }
    ::file-selector-button {
        box-sizing: border-box;
        border: 0 solid;
        margin: 0;
        padding: 0;
    }
    html,
    :host {
        -webkit-text-size-adjust: 100%;
        tab-size: 4;
        line-height: 1.5;
        font-family: var(
                --default-font-family,
                ui-sans-serif,
                system-ui,
                sans-serif,
                "Apple Color Emoji",
                "Segoe UI Emoji",
                "Segoe UI Symbol",
                "Noto Color Emoji"
        );
        font-feature-settings: var(--default-font-feature-settings, normal);
        font-variation-settings: var(--default-font-variation-settings, normal);
        -webkit-tap-highlight-color: transparent;
    }
    hr {
        height: 0;
        color: inherit;
        border-top-width: 1px;
    }
    abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: inherit;
        font-weight: inherit;
    }
    a {
        color: inherit;
        -webkit-text-decoration: inherit;
        -webkit-text-decoration: inherit;
        -webkit-text-decoration: inherit;
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
    }
    b,
    strong {
        font-weight: bolder;
    }
    code,
    kbd,
    samp,
    pre {
        font-family: var(
                --default-mono-font-family,
                ui-monospace,
                SFMono-Regular,
                Menlo,
                Monaco,
                Consolas,
                "Liberation Mono",
                "Courier New",
                monospace
        );
        font-feature-settings: var(--default-mono-font-feature-settings, normal);
        font-variation-settings: var(
                --default-mono-font-variation-settings,
                normal
        );
        font-size: 1em;
    }
    small {
        font-size: 80%;
    }
    sub,
    sup {
        vertical-align: baseline;
        font-size: 75%;
        line-height: 0;
        position: relative;
    }
    sub {
        bottom: -0.25em;
    }
    sup {
        top: -0.5em;
    }
    table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse;
    }
    :-moz-focusring {
        outline: auto;
    }
    progress {
        vertical-align: baseline;
    }
    summary {
        display: list-item;
    }
    ol,
    ul,
    menu {
        list-style: none;
    }
    img,
    svg,
    video,
    canvas,
    audio,
    iframe,
    embed,
    object {
        vertical-align: middle;
        display: block;
    }
    img,
    video {
        max-width: 100%;
        height: auto;
    }
    button,
    input,
    select,
    optgroup,
    textarea {
        font: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        letter-spacing: inherit;
        color: inherit;
        opacity: 1;
        background-color: #0000;
        border-radius: 0;
    }
    ::file-selector-button {
        font: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        letter-spacing: inherit;
        color: inherit;
        opacity: 1;
        background-color: #0000;
        border-radius: 0;
    }
    :where(select:is([multiple], [size])) optgroup {
        font-weight: bolder;
    }
    :where(select:is([multiple], [size])) optgroup option {
        padding-inline-start: 20px;
    }
    ::file-selector-button {
        margin-inline-end: 4px;
    }
    ::placeholder {
        opacity: 1;
    }
    @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
        ::placeholder {
            color: currentColor;
        }
        @supports (color: color-mix(in lab, red, red)) {
            ::placeholder {
                color: color-mix(in oklab, currentcolor 50%, transparent);
            }
        }
    }
    textarea {
        resize: vertical;
    }
    ::-webkit-search-decoration {
        -webkit-appearance: none;
    }
    ::-webkit-date-and-time-value {
        min-height: 1lh;
        text-align: inherit;
    }
    ::-webkit-datetime-edit {
        display: inline-flex;
    }
    ::-webkit-datetime-edit-fields-wrapper {
        padding: 0;
    }
    ::-webkit-datetime-edit {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-year-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-month-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-day-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-hour-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-minute-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-second-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-millisecond-field {
        padding-block: 0;
    }
    ::-webkit-datetime-edit-meridiem-field {
        padding-block: 0;
    }
    ::-webkit-calendar-picker-indicator {
        line-height: 1;
    }
    :-moz-ui-invalid {
        box-shadow: none;
    }
    button,
    input:where([type="button"], [type="reset"], [type="submit"]) {
        appearance: button;
    }
    ::file-selector-button {
        appearance: button;
    }
    ::-webkit-inner-spin-button {
        height: auto;
    }
    ::-webkit-outer-spin-button {
        height: auto;
    }
    [hidden]:where(:not([hidden="until-found"])) {
        display: none !important;
    }
}
@layer components;
@layer utilities {
    .sr-only {
        clip-path: inset(50%);
        white-space: nowrap;
        border-width: 0;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        position: absolute;
        overflow: hidden;
    }
    .absolute {
        position: absolute;
    }
    .relative {
        position: relative;
    }
    .start {
        inset-inline-start: var(--spacing);
    }
    .top-4 {
        top: calc(var(--spacing) * 4);
    }
    .top-full {
        top: 100%;
    }
    .right-0 {
        right: calc(var(--spacing) * 0);
    }
    .right-4 {
        right: calc(var(--spacing) * 4);
    }
    .z-10 {
        z-index: 10;
    }
    .z-50 {
        z-index: 50;
    }
    .m-1695 {
        margin: calc(var(--spacing) * 1695);
    }
    .m-4948 {
        margin: calc(var(--spacing) * 4948);
    }
    .m-8009 {
        margin: calc(var(--spacing) * 8009);
    }
    .mt-0\.5 {
        margin-top: calc(var(--spacing) * 0.5);
    }
    .mt-1 {
        margin-top: calc(var(--spacing) * 1);
    }
    .mt-1\.5 {
        margin-top: calc(var(--spacing) * 1.5);
    }
    .mt-4 {
        margin-top: calc(var(--spacing) * 4);
    }
    .mt-auto {
        margin-top: auto;
    }
    .mb-2 {
        margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-4 {
        margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
        margin-bottom: calc(var(--spacing) * 6);
    }
    .mb-8 {
        margin-bottom: calc(var(--spacing) * 8);
    }
    .mb-10 {
        margin-bottom: calc(var(--spacing) * 10);
    }
    .block {
        display: block;
    }
    .flex {
        display: flex;
    }
    .hidden {
        display: none;
    }
    .h-4 {
        height: calc(var(--spacing) * 4) !important;
    }
    .h-5 {
        height: calc(var(--spacing) * 5) !important;
    }
    .h-8 {
        height: calc(var(--spacing) * 8) !important;
    }
    .h-10 {
        height: calc(var(--spacing) * 10) !important;
    }
    .h-12 {
        height: calc(var(--spacing) * 12) !important;
    }
    .h-px {
        height: 1px;
    }
    .min-h-screen {
        min-height: 100vh;
    }
    .w-1\/2 {
        width: 50%;
    }
    .w-4 {
        width: calc(var(--spacing) * 4);
    }
    .w-5 {
        width: calc(var(--spacing) * 5);
    }
    .w-auto {
        width: auto;
    }
    .w-full {
        width: 100%;
    }
    .max-w-125 {
        max-width: calc(var(--spacing) * 125);
    }
    .max-w-150 {
        max-width: calc(var(--spacing) * 150);
    }
    .max-w-300 {
        max-width: calc(var(--spacing) * 300);
    }
    .flex-1 {
        flex: 1;
    }
    .flex-shrink-0,
    .shrink-0 {
        flex-shrink: 0;
    }
    .transform {
        transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,)
        var(--tw-skew-x,) var(--tw-skew-y,);
    }
    .cursor-pointer {
        cursor: pointer;
    }
    .flex-col {
        flex-direction: column;
    }
    .flex-wrap {
        flex-wrap: wrap;
    }
    .items-center {
        align-items: center;
    }
    .items-start {
        align-items: flex-start;
    }
    .justify-between {
        justify-content: space-between;
    }
    .justify-center {
        justify-content: center;
    }
    .self-center {
        justify-self: center !important;
    }
    .gap-2 {
        gap: calc(var(--spacing) * 2);
    }
    .gap-3 {
        gap: calc(var(--spacing) * 3);
    }
    .gap-4 {
        gap: calc(var(--spacing) * 4);
    }
    .gap-8 {
        gap: calc(var(--spacing) * 8);
    }
    .gap-x-8 {
        column-gap: calc(var(--spacing) * 8);
    }
    .gap-y-4 {
        row-gap: calc(var(--spacing) * 4);
    }
    .rounded {
        border-radius: 0.25rem;
    }
    .rounded-2xl {
        border-radius: var(--radius-2xl);
    }
    .rounded-4xl {
        border-radius: var(--radius-4xl);
    }
    .rounded-lg {
        border-radius: var(--radius-lg);
    }
    .rounded-md {
        border-radius: var(--radius-md);
    }
    .rounded-tr-4xl {
        border-top-right-radius: var(--radius-4xl);
    }
    .border {
        border-style: var(--tw-border-style);
        border-width: 1px;
    }
    .border-gray-200 {
        border-color: var(--color-gray-200);
    }
    .border-gray-300 {
        border-color: var(--color-gray-300);
    }
    .border-gray-700\/50 {
        border-color: #36415380;
    }
    @supports (color: color-mix(in lab, red, red)) {
        .border-gray-700\/50 {
            border-color: color-mix(in oklab, var(--color-gray-700) 50%, transparent);
        }
    }
    .bg-amber-50 {
        background-color: var(--color-amber-50);
    }
    .bg-black {
        background-color: var(--color-black);
    }
    .bg-blue-50 {
        background-color: var(--color-blue-50);
    }
    .bg-gray-200 {
        background-color: var(--color-gray-200);
    }
    .bg-gray-800\/40 {
        background-color: #1e293966;
    }
    @supports (color: color-mix(in lab, red, red)) {
        .bg-gray-800\/40 {
            background-color: color-mix(
                    in oklab,
                    var(--color-gray-800) 40%,
                    transparent
            );
        }
    }
    .bg-green-50 {
        background-color: var(--color-green-50);
    }
    .bg-red-50 {
        background-color: var(--color-red-50);
    }
    .bg-white {
        background-color: var(--color-white);
    }
    .bg-linear-to-r {
        --tw-gradient-position: to right;
    }
    @supports (background-image: linear-gradient(in lab, red, red)) {
        .bg-linear-to-r {
            --tw-gradient-position: to right in oklab;
        }
    }
    .bg-linear-to-r {
        background-image: linear-gradient(var(--tw-gradient-stops));
    }
    .bg-gradient-to-r {
        --tw-gradient-position: to right in oklab;
        background-image: linear-gradient(var(--tw-gradient-stops));
    }
    .from-pink-500 {
        --tw-gradient-from: var(--color-pink-500);
        --tw-gradient-stops: var(
                --tw-gradient-via-stops,
                var(--tw-gradient-position),
                var(--tw-gradient-from) var(--tw-gradient-from-position),
                var(--tw-gradient-to) var(--tw-gradient-to-position)
        );
    }
    .via-purple-400 {
        --tw-gradient-via: var(--color-purple-400);
        --tw-gradient-via-stops:
                var(--tw-gradient-position),
                var(--tw-gradient-from) var(--tw-gradient-from-position),
                var(--tw-gradient-via) var(--tw-gradient-via-position),
                var(--tw-gradient-to) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-via-stops);
    }
    .to-cyan-400 {
        --tw-gradient-to: var(--color-cyan-400);
        --tw-gradient-stops: var(
                --tw-gradient-via-stops,
                var(--tw-gradient-position),
                var(--tw-gradient-from) var(--tw-gradient-from-position),
                var(--tw-gradient-to) var(--tw-gradient-to-position)
        );
    }
    .to-fuchsia-500 {
        --tw-gradient-to: var(--color-fuchsia-500);
        --tw-gradient-stops: var(
                --tw-gradient-via-stops,
                var(--tw-gradient-position),
                var(--tw-gradient-from) var(--tw-gradient-from-position),
                var(--tw-gradient-to) var(--tw-gradient-to-position)
        );
    }
    .bg-clip-text {
        -webkit-background-clip: text;
        background-clip: text;
    }
    .p-4 {
        padding: calc(var(--spacing) * 4);
    }
    .px-3 {
        padding-inline: calc(var(--spacing) * 3);
    }
    .px-4 {
        padding-inline: calc(var(--spacing) * 4);
    }
    .px-8 {
        padding-inline: calc(var(--spacing) * 8);
    }
    .px-12 {
        padding-inline: calc(var(--spacing) * 12);
    }
    .py-1 {
        padding-block: calc(var(--spacing) * 1);
    }
    .py-1\.5 {
        padding-block: calc(var(--spacing) * 1.5);
    }
    .py-2 {
        padding-block: calc(var(--spacing) * 2);
    }
    .py-3 {
        padding-block: calc(var(--spacing) * 3);
    }
    .py-10 {
        padding-block: calc(var(--spacing) * 10);
    }
    .py-14 {
        padding-block: calc(var(--spacing) * 14);
    }
    .pt-6 {
        padding-top: calc(var(--spacing) * 6);
    }
    .text-center {
        text-align: center;
    }
    .text-2xl {
        font-size: var(--text-2xl);
        line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
    .text-3xl {
        font-size: var(--text-3xl);
        line-height: var(--tw-leading, var(--text-3xl--line-height));
    }
    .text-4xl {
        font-size: var(--text-4xl);
        line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
    .text-base {
        font-size: var(--text-base);
        line-height: var(--tw-leading, var(--text-base--line-height));
    }
    .text-lg {
        font-size: var(--text-lg);
        line-height: var(--tw-leading, var(--text-lg--line-height));
    }
    .text-sm {
        font-size: var(--text-sm);
        line-height: var(--tw-leading, var(--text-sm--line-height));
    }
    .text-xs {
        font-size: var(--text-xs);
        line-height: var(--tw-leading, var(--text-xs--line-height));
    }
    .leading-tight {
        --tw-leading: var(--leading-tight);
        line-height: var(--leading-tight);
    }
    .font-bold {
        --tw-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold);
    }
    .font-medium {
        --tw-font-weight: var(--font-weight-medium);
        font-weight: var(--font-weight-medium);
    }
    .font-semibold {
        --tw-font-weight: var(--font-weight-semibold);
        font-weight: var(--font-weight-semibold);
    }
    .tracking-tight {
        --tw-tracking: var(--tracking-tight);
        letter-spacing: var(--tracking-tight);
    }
    .text-amber-700 {
        color: var(--color-amber-700);
    }
    .text-blue-700 {
        color: var(--color-blue-700);
    }
    .text-gray-200 {
        color: var(--color-gray-200);
    }
    .text-gray-400 {
        color: var(--color-gray-400);
    }
    .text-gray-500 {
        color: var(--color-gray-500);
    }
    .text-gray-600 {
        color: var(--color-gray-600);
    }
    .text-gray-700 {
        color: var(--color-gray-700);
    }
    .text-gray-900 {
        color: var(--color-gray-900);
    }
    .text-green-400 {
        color: var(--color-green-400);
    }
    .text-green-700 {
        color: var(--color-green-700);
    }
    .text-pink-500 {
        color: var(--color-pink-500);
    }
    .text-pink-600 {
        color: var(--color-pink-600);
    }
    .text-red-500 {
        color: var(--color-red-500);
    }
    .text-red-700 {
        color: var(--color-red-700);
    }
    .text-transparent {
        color: #0000;
    }
    .text-white {
        color: var(--color-white);
    }
    .underline {
        text-decoration-line: underline;
    }
    .underline-offset-2 {
        text-underline-offset: 2px;
    }
    .placeholder-gray-400::placeholder {
        color: var(--color-gray-400);
    }
    .shadow-2xl {
        --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, #00000040);
        box-shadow:
                var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-lg {
        --tw-shadow:
                0 10px 15px -3px var(--tw-shadow-color, #0000001a),
                0 4px 6px -4px var(--tw-shadow-color, #0000001a);
        box-shadow:
                var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-md {
        --tw-shadow:
                0 4px 6px -1px var(--tw-shadow-color, #0000001a),
                0 2px 4px -2px var(--tw-shadow-color, #0000001a);
        box-shadow:
                var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-sm {
        --tw-shadow:
                0 1px 3px 0 var(--tw-shadow-color, #0000001a),
                0 1px 2px -1px var(--tw-shadow-color, #0000001a);
        box-shadow:
                var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .transition {
        transition-property:
                color,
                background-color,
                border-color,
                outline-color,
                text-decoration-color,
                fill,
                stroke,
                --tw-gradient-from,
                --tw-gradient-via,
                --tw-gradient-to,
                opacity,
                box-shadow,
                transform,
                translate,
                scale,
                rotate,
                filter,
                -webkit-backdrop-filter,
                backdrop-filter,
                display,
                content-visibility,
                overlay,
                pointer-events;
        transition-timing-function: var(
                --tw-ease,
                var(--default-transition-timing-function)
        );
        transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .outline-none {
        --tw-outline-style: none;
        outline-style: none;
    }
    @media (hover: hover) {
        .hover\:bg-gray-50:hover {
            background-color: var(--color-gray-50);
        }
        .hover\:bg-gray-100:hover {
            background-color: var(--color-gray-100);
        }
        .hover\:from-pink-600:hover {
            --tw-gradient-from: var(--color-pink-600);
            --tw-gradient-stops: var(
                    --tw-gradient-via-stops,
                    var(--tw-gradient-position),
                    var(--tw-gradient-from) var(--tw-gradient-from-position),
                    var(--tw-gradient-to) var(--tw-gradient-to-position)
            );
        }
        .hover\:to-fuchsia-600:hover {
            --tw-gradient-to: var(--color-fuchsia-600);
            --tw-gradient-stops: var(
                    --tw-gradient-via-stops,
                    var(--tw-gradient-position),
                    var(--tw-gradient-from) var(--tw-gradient-from-position),
                    var(--tw-gradient-to) var(--tw-gradient-to-position)
            );
        }
        .hover\:text-gray-600:hover {
            color: var(--color-gray-600);
        }
        .hover\:text-gray-700:hover {
            color: var(--color-gray-700);
        }
        .hover\:text-gray-900:hover {
            color: var(--color-gray-900);
        }
        .hover\:text-pink-700:hover {
            color: var(--color-pink-700);
        }
        .hover\:shadow-lg:hover {
            --tw-shadow:
                    0 10px 15px -3px var(--tw-shadow-color, #0000001a),
                    0 4px 6px -4px var(--tw-shadow-color, #0000001a);
            box-shadow:
                    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
        }
        .hover\:shadow-md:hover {
            --tw-shadow:
                    0 4px 6px -1px var(--tw-shadow-color, #0000001a),
                    0 2px 4px -2px var(--tw-shadow-color, #0000001a);
            box-shadow:
                    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
        }
    }
    .focus\:border-pink-400:focus {
        border-color: var(--color-pink-400);
    }
    .focus\:ring-2:focus {
        --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0
        calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
        box-shadow:
                var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
                var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .focus\:ring-pink-100:focus {
        --tw-ring-color: var(--color-pink-100);
    }
    .focus\:ring-pink-400:focus {
        --tw-ring-color: var(--color-pink-400);
    }
    .focus\:ring-offset-2:focus {
        --tw-ring-offset-width: 2px;
        --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    }
    .focus\:outline-none:focus {
        --tw-outline-style: none;
        outline-style: none;
    }
    .disabled\:cursor-not-allowed:disabled {
        cursor: not-allowed;
    }
    .disabled\:opacity-50:disabled {
        opacity: 0.5;
    }
    @media (min-width: 40rem) {
        .sm\:px-12 {
            padding-inline: calc(var(--spacing) * 12);
        }
        .sm\:py-14 {
            padding-block: calc(var(--spacing) * 14);
        }
        .sm\:text-4xl {
            font-size: var(--text-4xl);
            line-height: var(--tw-leading, var(--text-4xl--line-height));
        }
    }
    @media (min-width: 48rem) {
        .md\:p-8 {
            padding: calc(var(--spacing) * 8);
        }
    }
    @media (min-width: 64rem) {
        .lg\:flex {
            display: flex;
        }
        .lg\:w-1\/2 {
            width: 50%;
        }
        .lg\:max-w-none {
            max-width: none;
        }
        .lg\:flex-row {
            flex-direction: row;
        }
        .lg\:items-stretch {
            align-items: stretch;
        }
        .lg\:gap-0 {
            gap: calc(var(--spacing) * 0);
        }
    }
    @media (min-width: 80rem) {
        .xl\:flex {
            display: flex;
        }
        .xl\:w-1\/2 {
            width: 50%;
        }
        .xl\:max-w-none {
            max-width: none;
        }
        .xl\:flex-row {
            flex-direction: row;
        }
        .xl\:items-stretch {
            align-items: stretch;
        }
        .xl\:gap-0 {
            gap: calc(var(--spacing) * 0);
        }
        .xl\:px-16 {
            padding-inline: calc(var(--spacing) * 16);
        }
        .xl\:text-5xl {
            font-size: var(--text-5xl);
            line-height: var(--tw-leading, var(--text-5xl--line-height));
        }
    }
}
@property --tw-rotate-x {
    syntax: "*";
    inherits: false;
}
@property --tw-rotate-y {
    syntax: "*";
    inherits: false;
}
@property --tw-rotate-z {
    syntax: "*";
    inherits: false;
}
@property --tw-skew-x {
    syntax: "*";
    inherits: false;
}
@property --tw-skew-y {
    syntax: "*";
    inherits: false;
}
@property --tw-border-style {
    syntax: "*";
    inherits: false;
    initial-value: solid;
}
@property --tw-gradient-position {
    syntax: "*";
    inherits: false;
}
@property --tw-gradient-from {
    syntax: "<color>";
    inherits: false;
    initial-value: #0000;
}
@property --tw-gradient-via {
    syntax: "<color>";
    inherits: false;
    initial-value: #0000;
}
@property --tw-gradient-to {
    syntax: "<color>";
    inherits: false;
    initial-value: #0000;
}
@property --tw-gradient-stops {
    syntax: "*";
    inherits: false;
}
@property --tw-gradient-via-stops {
    syntax: "*";
    inherits: false;
}
@property --tw-gradient-from-position {
    syntax: "<length-percentage>";
    inherits: false;
    initial-value: 0%;
}
@property --tw-gradient-via-position {
    syntax: "<length-percentage>";
    inherits: false;
    initial-value: 50%;
}
@property --tw-gradient-to-position {
    syntax: "<length-percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-leading {
    syntax: "*";
    inherits: false;
}
@property --tw-font-weight {
    syntax: "*";
    inherits: false;
}
@property --tw-tracking {
    syntax: "*";
    inherits: false;
}
@property --tw-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
    syntax: "*";
    inherits: false;
}
@property --tw-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-inset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
    syntax: "*";
    inherits: false;
}
@property --tw-inset-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}
@property --tw-ring-color {
    syntax: "*";
    inherits: false;
}
@property --tw-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
    syntax: "*";
    inherits: false;
}
@property --tw-inset-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
    syntax: "*";
    inherits: false;
}
@property --tw-ring-offset-width {
    syntax: "<length>";
    inherits: false;
    initial-value: 0;
}
@property --tw-ring-offset-color {
    syntax: "*";
    inherits: false;
    initial-value: #fff;
}
@property --tw-ring-offset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

body > div {
    background: #0a0a0f;
    background-image:
            radial-gradient(
                    ellipse 60% 25% at 55% 105%,
                    rgba(100, 30, 150, 0.4) 0%,
                    transparent 70%
            ),
            radial-gradient(
                    ellipse 50% 20% at 75% 105%,
                    rgba(30, 60, 160, 0.35) 0%,
                    transparent 70%
            );
}

.pf-v5-c-login__container {
    grid-template-columns: unset;
    grid-template-areas: unset;
    display: unset;
}

.pf-v5-c-login__main-header {
    border: unset;
}

div.pf-v5-c-login__main-header {
    grid-template-columns: unset;
}

#kc-info {
    border: unset;
}
