/* =========================================================
   ARPIVA
   OPPORTUNITIES PAGE
   PREMIUM CAREERS UI
========================================================= */

.opportunities-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #081b4b;
}

.opportunities-page .container {
    width: min(1180px, calc(100% - 80px));
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.opportunities-hero {
    position: relative;

    min-height: 660px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(47,128,237,.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06163f 0%,
            #09275f 50%,
            #123c8d 100%
        );
}

.opportunities-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    animation:
        opportunitiesGridMove
        22s
        linear
        infinite;
}

@keyframes opportunitiesGridMove {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(80px,80px);
    }

}

.opportunities-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.opportunities-orb-one {
    width: 500px;
    height: 500px;

    right: -220px;
    top: -220px;

    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 0 0 70px rgba(255,255,255,.025),
        0 0 0 140px rgba(255,255,255,.015);

    animation:
        opportunitiesOrb
        10s
        ease-in-out
        infinite
        alternate;
}

.opportunities-orb-two {
    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -190px;

    background: rgba(47,128,237,.07);

    animation:
        opportunitiesOrbTwo
        8s
        ease-in-out
        infinite
        alternate;
}

@keyframes opportunitiesOrb {

    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(-30px,25px) scale(1.08);
    }

}

@keyframes opportunitiesOrbTwo {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(35px,-25px);
    }

}

.opportunities-hero-content {
    position: relative;
    z-index: 5;

    width: 58%;
    max-width: 720px;

    padding: 120px 0;

    animation:
        opportunitiesHeroReveal
        1s
        cubic-bezier(.22,1,.36,1)
        both;
}

@keyframes opportunitiesHeroReveal {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.opportunities-eyebrow {
    display: inline-flex;

    padding: 10px 20px;

    margin-bottom: 25px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.17);

    background: rgba(255,255,255,.07);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    backdrop-filter: blur(10px);
}

.opportunities-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(50px,6vw,74px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3px;
}

.opportunities-hero h1 span {
    display: block;

    color: #ff9f0a;
}

.opportunities-hero p {
    max-width: 650px;

    margin: 28px 0 32px;

    color: #d7e5ff;

    font-size: 18px;

    line-height: 1.8;
}

.opportunities-primary-btn,
.opportunities-final-btn,
.profile-create-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 22px;

    border-radius: 12px;

    background: #1769ff;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 14px 35px rgba(23,105,255,.25);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.opportunities-primary-btn:hover,
.opportunities-final-btn:hover,
.profile-create-btn:hover {
    color: #fff;

    background: #0e55d4;

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(23,105,255,.32);
}

.opportunities-primary-btn span,
.opportunities-final-btn span,
.profile-create-btn span {
    font-size: 17px;

    transition:
        transform .3s ease;
}

.opportunities-primary-btn:hover span,
.opportunities-final-btn:hover span,
.profile-create-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   HERO TALENT ORBIT
========================================================= */

.opportunities-visual {
    position: absolute;

    z-index: 3;

    right: 4%;

    top: 50%;

    width: 440px;
    height: 440px;

    transform: translateY(-50%);
}

.opportunity-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform: translate(-50%,-50%);

    border: 1px solid rgba(141,187,255,.23);
}

.opportunity-ring-one {
    width: 420px;
    height: 420px;

    animation:
        opportunityOrbit
        24s
        linear
        infinite;
}

.opportunity-ring-two {
    width: 310px;
    height: 310px;

    border-color: rgba(255,159,10,.22);

    animation:
        opportunityOrbitReverse
        17s
        linear
        infinite;
}

.opportunity-ring-three {
    width: 190px;
    height: 190px;

    animation:
        opportunityOrbit
        12s
        linear
        infinite;
}

@keyframes opportunityOrbit {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

}

@keyframes opportunityOrbitReverse {

    from {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

}

.opportunity-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 135px;
    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2f80ed,
            #123c8d
        );

    color: #fff;

    box-shadow:
        0 30px 80px rgba(47,128,237,.42);

    animation:
        opportunityCorePulse
        4s
        ease-in-out
        infinite;
}

.opportunity-core span {
    font-size: 10px;

    letter-spacing: 2px;

    opacity: .72;
}

.opportunity-core strong {
    margin-top: 5px;

    font-size: 18px;
}

@keyframes opportunityCorePulse {

    0%,100% {
        transform:
            translate(-50%,-50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%,-50%)
            scale(1.07);
    }

}

.opportunity-node {
    position: absolute;

    padding: 10px 15px;

    border-radius: 50px;

    background: rgba(255,255,255,.96);

    color: #174b9b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .6px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

    animation:
        opportunityNodeFloat
        4s
        ease-in-out
        infinite;
}

.opportunity-node-one {
    top: 25px;
    left: 170px;
}

.opportunity-node-two {
    right: -2px;
    top: 190px;

    animation-delay: .7s;
}

.opportunity-node-three {
    bottom: 25px;
    left: 165px;

    animation-delay: 1.4s;
}

.opportunity-node-four {
    left: -5px;
    top: 190px;

    animation-delay: 2.1s;
}

@keyframes opportunityNodeFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   STATUS
========================================================= */

.opportunities-status {
    padding: 70px 0;

    background: #f6f9fd;
}

.opportunities-status-box {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 35px;

    align-items: center;

    padding: 32px 35px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #e0e9f3;

    box-shadow:
        0 15px 45px rgba(8,27,75,.06);

    animation:
        statusFloat
        5s
        ease-in-out
        infinite;
}

@keyframes statusFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}

.status-indicator {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #60738e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    white-space: nowrap;
}

.status-indicator span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff9f0a;

    box-shadow:
        0 0 0 5px rgba(255,159,10,.10);

    animation:
        statusPulse
        2s
        ease-in-out
        infinite;
}

@keyframes statusPulse {

    0%,100% {
        box-shadow:
            0 0 0 4px rgba(255,159,10,.10);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(255,159,10,.04);
    }

}

.status-content h2 {
    margin: 0 0 5px;

    font-size: 22px;

    font-weight: 800;
}

.status-content h2 span {
    color: #1769ff;
}

.status-content p {
    margin: 0;

    color: #6d7f97;

    font-size: 13px;

    line-height: 1.6;
}

.status-button {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-radius: 10px;

    background: #081b4b;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease;
}

.status-button:hover {
    color: #fff;

    background: #1769ff;

    transform: translateY(-2px);
}


/* =========================================================
   PROFILE BENEFITS
========================================================= */

.opportunities-profile {
    padding: 110px 0;

    background: #fff;
}

.opportunities-section-heading {
    max-width: 750px;

    margin-bottom: 55px;
}

.opportunities-label {
    display: inline-block;

    color: #1769ff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.opportunities-section-heading h2 {
    margin: 17px 0 20px;

    font-size: 47px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.opportunities-section-heading h2 span {
    color: #1769ff;
}

.opportunities-section-heading p {
    margin: 0;

    color: #657892;

    font-size: 16px;

    line-height: 1.8;
}

.profile-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}

.profile-benefit-card {
    position: relative;

    min-height: 290px;

    padding: 32px;

    overflow: hidden;

    border-radius: 22px;

    background: #f8faff;

    border: 1px solid #e1eaf4;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}

.profile-benefit-card:hover {
    transform: translateY(-8px);

    background: #fff;

    box-shadow:
        0 25px 60px rgba(8,27,75,.10);
}

.profile-card-number {
    position: absolute;

    right: 23px;
    top: 21px;

    color: #dce6f3;

    font-size: 12px;

    font-weight: 800;
}

.profile-benefit-icon {
    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 15px;

    background: #eaf2ff;

    color: #1769ff;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.profile-benefit-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-benefit-card:hover .profile-benefit-icon {
    transform: scale(1.08);

    background: #1769ff;

    color: #fff;
}

.profile-benefit-card h3 {
    margin: 0 0 13px;

    font-size: 20px;
}

.profile-benefit-card p {
    margin: 0;

    color: #6b7d95;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   PROFILE PREVIEW
========================================================= */

.opportunities-profile-preview {
    padding: 105px 0;

    background: #f6f9fd;
}

.profile-preview-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #06163f,
            #123c8d
        );

    box-shadow:
        0 30px 80px rgba(8,27,75,.18);

    overflow: hidden;
}

.profile-preview-content {
    max-width: 550px;
}

.profile-preview-content .opportunities-label {
    color: #8ec0ff;
}

.profile-preview-content h2 {
    margin: 18px 0 20px;

    color: #fff;

    font-size: 45px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.profile-preview-content h2 span {
    color: #ff9f0a;
}

.profile-preview-content > p {
    margin: 0 0 28px;

    color: #d6e4ff;

    font-size: 15px;

    line-height: 1.8;
}

.profile-preview-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 30px;
}

.profile-preview-points div {
    padding: 14px;

    border-radius: 12px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.09);
}

.profile-preview-points span {
    display: block;

    margin-bottom: 4px;

    color: #ff9f0a;

    font-size: 9px;

    font-weight: 800;
}

.profile-preview-points strong {
    color: #fff;

    font-size: 11px;

    line-height: 1.4;
}

.profile-create-btn {
    background: #ff9f0a;

    color: #071947;

    box-shadow:
        0 14px 35px rgba(255,159,10,.18);
}

.profile-create-btn:hover {
    color: #071947;

    background: #ffad2f;
}


/* =========================================================
   DASHBOARD VISUAL
========================================================= */

.profile-dashboard-visual {
    position: relative;

    min-height: 410px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.profile-dashboard-card {
    width: 360px;

    padding: 28px;

    border-radius: 22px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 30px 70px rgba(0,0,0,.25);

    transform:
        rotate(2deg);

    animation:
        dashboardFloat
        5s
        ease-in-out
        infinite;
}

@keyframes dashboardFloat {

    0%,100% {
        transform:
            rotate(2deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(1deg)
            translateY(-10px);
    }

}

.profile-dashboard-top {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 25px;

    border-bottom: 1px solid #e5ebf3;
}

.profile-avatar {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #123c8d
        );

    color: #fff;

    font-size: 18px;

    font-weight: 800;
}

.profile-dashboard-top strong {
    display: block;

    color: #102c57;

    font-size: 15px;
}

.profile-dashboard-top span {
    display: block;

    margin-top: 4px;

    color: #7a8aa1;

    font-size: 10px;
}

.profile-progress {
    padding: 25px 0;

    border-bottom: 1px solid #e5ebf3;
}

.profile-progress-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;

    color: #687a93;

    font-size: 10px;

    font-weight: 700;
}

.profile-progress-header strong {
    color: #1769ff;
}

.profile-progress-bar {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: #e9eff7;
}

.profile-progress-bar span {
    display: block;

    width: 75%;
    height: 100%;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #1769ff,
            #59a0ff
        );

    animation:
        profileProgress
        2s
        ease-out
        both;
}

@keyframes profileProgress {

    from {
        width: 0;
    }

    to {
        width: 75%;
    }

}

.profile-dashboard-items {
    padding-top: 20px;
}

.profile-dashboard-items div {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #405773;

    font-size: 11px;

    font-weight: 600;
}

.profile-check,
.profile-pending {
    width: 21px;
    height: 21px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 10px;
}

.profile-check {
    background: #e7f6ef;

    color: #1b9c63;
}

.profile-pending {
    background: #fff2dc;

    color: #e49a18;
}


/* =========================================================
   FUTURE
========================================================= */

.opportunities-future {
    padding: 110px 0;

    background: #fff;
}

.future-opportunities-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.future-opportunities-content {
    max-width: 600px;
}

.future-opportunities-content h2 {
    margin: 18px 0 22px;

    font-size: 46px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.future-opportunities-content h2 span {
    color: #1769ff;
}

.future-opportunities-content p {
    margin: 0 0 18px;

    color: #657892;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FUTURE PATH VISUAL
========================================================= */

.future-opportunity-visual {
    position: relative;

    width: 440px;
    height: 320px;

    margin: auto;
}

.future-path {
    position: absolute;

    left: 40px;
    right: 40px;

    top: 50%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #1769ff,
            #ff9f0a
        );

    transform: translateY(-50%);

    animation:
        futurePath
        2s
        ease-out
        both;
}

@keyframes futurePath {

    from {
        transform:
            translateY(-50%)
            scaleX(0);
        transform-origin: left;
    }

    to {
        transform:
            translateY(-50%)
            scaleX(1);
        transform-origin: left;
    }

}

.future-point {
    position: absolute;

    top: 50%;

    width: 70px;
    height: 70px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #fff;

    border: 2px solid #1769ff;

    box-shadow:
        0 12px 30px rgba(23,105,255,.13);

    animation:
        futurePointFloat
        4s
        ease-in-out
        infinite;
}

.future-point span {
    color: #1769ff;

    font-size: 9px;

    font-weight: 800;
}

.future-point strong {
    margin-top: 3px;

    color: #18365e;

    font-size: 8px;
}

.point-one {
    left: 0;
}

.point-two {
    left: 33%;

    animation-delay: .7s;
}

.point-three {
    left: 66%;

    animation-delay: 1.4s;
}

.point-four {
    right: 0;

    border-color: #ff9f0a;

    animation-delay: 2.1s;
}

.point-four span {
    color: #ff9f0a;
}

@keyframes futurePointFloat {

    0%,100% {
        transform:
            translateY(-50%);
    }

    50% {
        transform:
            translateY(calc(-50% - 8px));
    }

}


/* =========================================================
   FINAL CTA
========================================================= */

.opportunities-final {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(47,128,237,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06163f,
            #123c8d
        );
}

.opportunities-final-orb {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    transform: translate(-50%,-50%);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.02),
        0 0 0 160px rgba(255,255,255,.015);

    animation:
        opportunitiesFinalOrb
        9s
        ease-in-out
        infinite
        alternate;
}

@keyframes opportunitiesFinalOrb {

    from {
        transform:
            translate(-50%,-50%)
            scale(1);
    }

    to {
        transform:
            translate(-50%,-50%)
            scale(1.12);
    }

}

.opportunities-final-content {
    position: relative;

    z-index: 3;

    max-width: 820px;

    margin: auto;
}

.opportunities-final-content h2 {
    margin: 0 0 22px;

    color: #fff;

    font-size: 52px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.opportunities-final-content h2 span {
    color: #ff9f0a;
}

.opportunities-final-content p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #d6e4ff;

    font-size: 17px;

    line-height: 1.8;
}

.opportunities-final-btn {
    background: #ff9f0a;

    color: #071947;

    box-shadow:
        0 15px 35px rgba(255,159,10,.18);
}

.opportunities-final-btn:hover {
    color: #071947;

    background: #ffad2f;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .opportunities-page .container {
        width: min(720px, calc(100% - 50px));
    }

    .opportunities-hero-content {
        width: 65%;
    }

    .opportunities-visual {
        right: -120px;

        opacity: .55;
    }

    .opportunities-status-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-benefits-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .profile-preview-box {
        grid-template-columns: 1fr;

        padding: 55px;
    }

    .future-opportunities-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media(max-width:700px) {

    .opportunities-page .container {
        width: calc(100% - 36px);
    }

    .opportunities-hero {
        min-height: 620px;
    }

    .opportunities-hero-content {
        width: 100%;

        padding: 90px 0;
    }

    .opportunities-hero h1 {
        font-size: 44px;
    }

    .opportunities-hero p {
        font-size: 16px;
    }

    .opportunities-visual {
        width: 300px;
        height: 300px;

        right: -70px;
        bottom: -100px;
        top: auto;

        transform: none;

        opacity: .35;
    }

    .opportunity-ring-one {
        width: 285px;
        height: 285px;
    }

    .opportunity-ring-two {
        width: 200px;
        height: 200px;
    }

    .opportunity-ring-three {
        width: 130px;
        height: 130px;
    }

    .opportunity-core {
        width: 95px;
        height: 95px;
    }

    .opportunities-status {
        padding: 45px 0;
    }

    .opportunities-status-box {
        padding: 25px;
    }

    .opportunities-section-heading h2 {
        font-size: 37px;
    }

    .opportunities-profile {
        padding: 80px 0;
    }

    .profile-benefits-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-profile-preview {
        padding: 75px 0;
    }

    .profile-preview-box {
        padding: 35px 25px;
    }

    .profile-preview-content h2 {
        font-size: 37px;
    }

    .profile-preview-points {
        grid-template-columns: 1fr;
    }

    .profile-dashboard-card {
        width: 100%;

        max-width: 330px;
    }

    .opportunities-future {
        padding: 80px 0;
    }

    .future-opportunities-content h2 {
        font-size: 37px;
    }

    .future-opportunity-visual {
        width: 100%;

        height: 280px;

        transform: scale(.82);

        transform-origin: center;
    }

    .opportunities-final {
        min-height: 440px;
    }

    .opportunities-final-content h2 {
        font-size: 38px;
    }

}
/* =========================================================
   CAREER REGISTRATION TOGGLE
========================================================= */

.profile-create-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.profile-create-btn span {
    transition:
        transform .35s ease;
}

.profile-create-btn.is-active span {
    transform: rotate(90deg);
}


/* =========================================================
   REGISTRATION PANEL
========================================================= */

.arpiva-career-registration {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    margin-top: 0;

    overflow: hidden;

    transition:
        grid-template-rows .65s cubic-bezier(.22,1,.36,1),
        opacity .45s ease,
        margin-top .45s ease;
}

.arpiva-career-registration.is-open {
    grid-template-rows: 1fr;

    opacity: 1;

    margin-top: 35px;
}

.arpiva-registration-inner {
    min-height: 0;

    overflow: hidden;

    padding: 0;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.13);

    box-shadow:
        0 25px 70px rgba(0,0,0,.22);

    backdrop-filter: blur(16px);

    transform: translateY(-15px);

    transition:
        transform .65s cubic-bezier(.22,1,.36,1);
}

.arpiva-career-registration.is-open
.arpiva-registration-inner {

    transform: translateY(0);

}


/* =========================================================
   REGISTRATION HEADER
========================================================= */

.arpiva-registration-header {

    padding: 38px 40px 25px;

    border-bottom:
        1px solid rgba(255,255,255,.10);
}

.arpiva-registration-header
.opportunities-label {

    color: #8ec0ff;
}

.arpiva-registration-header h3 {

    margin: 12px 0 12px;

    color: #fff;

    font-size: 32px;

    line-height: 1.15;

    letter-spacing: -1px;
}

.arpiva-registration-header h3 span {

    color: #ff9f0a;
}

.arpiva-registration-header p {

    max-width: 650px;

    margin: 0;

    color: #cbdcff;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FORM AREA
========================================================= */

.arpiva-registration-form {

    padding: 35px 40px 40px;

    background: #fff;

    border-radius: 0 0 24px 24px;
}


/*
 * Give the plugin's form a clean ARPIVA appearance
 */

.arpiva-registration-form form {

    width: 100%;
}

.arpiva-registration-form
input[type="text"],
.arpiva-registration-form
input[type="email"],
.arpiva-registration-form
input[type="password"],
.arpiva-registration-form
input[type="tel"],
.arpiva-registration-form
input[type="file"],
.arpiva-registration-form
select,
.arpiva-registration-form
textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #dce5f0;

    border-radius: 10px;

    background: #f9fbfe;

    color: #102c57;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.arpiva-registration-form
input:focus,
.arpiva-registration-form
select:focus,
.arpiva-registration-form
textarea:focus {

    background: #fff;

    border-color: #1769ff;

    box-shadow:
        0 0 0 4px rgba(23,105,255,.08);
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px) {

    .arpiva-registration-header {

        padding: 28px 22px 22px;
    }

    .arpiva-registration-header h3 {

        font-size: 27px;
    }

    .arpiva-registration-form {

        padding: 25px 20px 30px;
    }

}