.azur-service-request {
    --azur-service-request-max-width: 1280px;
    --azur-service-request-intro-width: 62%;
    --azur-service-request-overlap: 155px;
    position: relative;
    isolation: isolate;
    width: 100%;
}

.azur-service-request,
.azur-service-request * {
    box-sizing: border-box;
}

.azur-service-request__hero {
    position: relative;
    z-index: 2;
    isolation: isolate;
    min-height: 450px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: visible;
}

.azur-service-request__background-control-surface {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}

.azur-service-request__hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: #07101c;
    opacity: 0.76;
    pointer-events: none;
}

.azur-service-request__hero-inner,
.azur-service-request__support-inner {
    width: min(100%, var(--azur-service-request-max-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, var(--azur-service-request-intro-width)) minmax(0, 1fr);
    column-gap: 72px;
}

.azur-service-request__hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    align-items: center;
    padding: 70px 32px;
}

.azur-service-request--form-left .azur-service-request__intro {
    grid-column: 2;
}

.azur-service-request--form-left .azur-service-request__form-column {
    grid-column: 1;
    grid-row: 1;
}

.azur-service-request--no-form .azur-service-request__hero-inner,
.azur-service-request--no-intro .azur-service-request__hero-inner {
    grid-template-columns: minmax(0, 1fr);
}

.azur-service-request--no-form .azur-service-request__intro,
.azur-service-request--no-intro .azur-service-request__form-column {
    grid-column: 1;
}

.azur-service-request__intro,
.azur-service-request__form-column,
.azur-service-request__support-content,
.azur-service-request__support-copy {
    min-width: 0;
}

.azur-service-request__intro {
    position: relative;
    z-index: 1;
    align-self: center;
}

.azur-service-request__title,
.azur-service-request__form-title,
.azur-service-request__support-title {
    margin: 0;
    overflow-wrap: anywhere;
}

.azur-service-request__title {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 4.25rem);
    line-height: 1.08;
}

.azur-service-request__description {
    max-width: 760px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
}

.azur-service-request__description > :first-child,
.azur-service-request__form-description > :first-child {
    margin-top: 0;
}

.azur-service-request__description > :last-child,
.azur-service-request__form-description > :last-child {
    margin-bottom: 0;
}

.azur-service-request__form-column {
    position: relative;
    z-index: 4;
    align-self: start;
    margin-bottom: calc(-1 * var(--azur-service-request-overlap));
}

.azur-service-request__form-card {
    width: 100%;
    padding: 48px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(3, 10, 20, 0.16);
}

.azur-service-request__form-title {
    margin-bottom: 24px;
    color: #0f172a;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    line-height: 1.2;
}

.azur-service-request__form-description {
    margin-bottom: 22px;
    color: #64748b;
    line-height: 1.7;
}

.azur-service-request__form,
.azur-service-request__fields {
    display: grid;
    width: 100%;
}

.azur-service-request__fields {
    gap: 15px;
}

.azur-service-request__field {
    position: relative;
    min-width: 0;
}

.azur-service-request__label {
    display: inline-block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
}

.azur-service-request__label--screen-reader {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.azur-service-request__required {
    margin-inline-start: 0.2em;
}

.azur-service-request__input {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin: 0;
    padding: 14px 18px;
    color: #334155;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 0;
    font: inherit;
    line-height: 1.4;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    appearance: none;
}

.azur-service-request__input::placeholder {
    color: #6b7280;
    opacity: 1;
}

.azur-service-request__input:focus {
    outline: 0;
    border-color: #0f63e6;
    box-shadow: 0 0 0 3px rgba(15, 99, 230, 0.13);
}

.azur-service-request__input:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}

.azur-service-request__textarea {
    min-height: 128px;
    resize: vertical;
}

.azur-service-request__message {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    line-height: 1.5;
}

.azur-service-request__message--success {
    color: #166534;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.azur-service-request__message--error {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.azur-service-request__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 16px 28px;
    color: #fff;
    background: #0f63e6;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.azur-service-request__submit:hover,
.azur-service-request__submit:focus-visible {
    color: #fff;
    background: #0a111a;
}

.azur-service-request__submit:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.azur-service-request__submit:disabled,
.azur-service-request__submit[aria-busy="true"] {
    cursor: wait;
    opacity: 0.7;
}

.azur-service-request__submit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
}

.azur-service-request__submit-icon svg,
.azur-service-request__submit-icon i {
    display: block;
}

.azur-service-request__honeypot {
    position: absolute !important;
    inset-inline-start: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.azur-service-request__support {
    position: relative;
    z-index: 1;
    background: #fff;
}

.azur-service-request__support-inner {
    align-items: center;
    min-height: calc(var(--azur-service-request-overlap) + 100px);
    padding: 48px 32px;
}

.azur-service-request__support-content {
    display: flex;
    align-items: center;
    gap: 24px;
    grid-column: 1;
}

.azur-service-request--form-left .azur-service-request__support-content {
    grid-column: 2;
}

.azur-service-request--no-form .azur-service-request__support-inner,
.azur-service-request--no-intro .azur-service-request__support-inner {
    grid-template-columns: minmax(0, 1fr);
}

.azur-service-request--no-form .azur-service-request__support-content,
.azur-service-request--no-intro .azur-service-request__support-content {
    grid-column: 1;
}

.azur-service-request__support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    color: #fff;
    background: #0f63e6;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.azur-service-request__support-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.azur-service-request__support-title {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    line-height: 1.25;
}

.azur-service-request__support-phone {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35em;
    color: #64748b;
    overflow-wrap: anywhere;
}

.azur-service-request__support-phone a {
    color: inherit;
    text-decoration: none;
}

.azur-service-request__support-phone a:hover,
.azur-service-request__support-phone a:focus-visible {
    color: #0f63e6;
}

.azur-service-request__support-phone a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .azur-service-request {
        --azur-service-request-intro-width: 54%;
        --azur-service-request-overlap: 90px;
    }

    .azur-service-request__hero-inner,
    .azur-service-request__support-inner {
        column-gap: 40px;
    }

    .azur-service-request__hero-inner {
        padding: 56px 24px;
    }

    .azur-service-request__form-card {
        padding: 38px 34px;
    }

    .azur-service-request__support-inner {
        padding: 42px 24px;
    }
}

@media (max-width: 767px) {
    .azur-service-request {
        --azur-service-request-overlap: 0px;
    }

    .azur-service-request__hero {
        min-height: 0;
    }

    .azur-service-request__hero-inner,
    .azur-service-request__support-inner {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 28px;
        column-gap: 0;
    }

    .azur-service-request__hero-inner {
        padding: 48px 18px;
    }

    .azur-service-request__intro,
    .azur-service-request__form-column,
    .azur-service-request--form-left .azur-service-request__intro,
    .azur-service-request--form-left .azur-service-request__form-column {
        grid-column: 1;
        grid-row: auto;
    }

    .azur-service-request--mobile-intro-first .azur-service-request__intro {
        order: 1;
    }

    .azur-service-request--mobile-intro-first .azur-service-request__form-column {
        order: 2;
    }

    .azur-service-request--mobile-form-first .azur-service-request__form-column {
        order: 1;
    }

    .azur-service-request--mobile-form-first .azur-service-request__intro {
        order: 2;
    }

    .azur-service-request__form-column {
        margin-bottom: 0;
    }

    .azur-service-request__form-card {
        padding: 30px 22px;
    }

    .azur-service-request__support-inner {
        min-height: 0;
        padding: 34px 18px;
    }

    .azur-service-request__support-content,
    .azur-service-request--form-left .azur-service-request__support-content {
        grid-column: 1;
    }

    .azur-service-request__support-content {
        align-items: flex-start;
    }

    .azur-service-request__support-icon {
        flex-basis: 70px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .azur-service-request__support-content {
        flex-direction: column;
    }

    .azur-service-request__support-phone {
        display: block;
    }

    .azur-service-request__support-label {
        margin-inline-end: 0.35em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .azur-service-request__input,
    .azur-service-request__submit {
        transition: none;
    }
}
