.provider-auth-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.38), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(14, 165, 233, 0.3), transparent 36%),
        linear-gradient(135deg, #020617 0%, #061a3a 45%, #0f3b7a 100%);
    color: #ffffff;
    overflow: hidden;
}

.provider-auth-container {
    max-width: 1200px;
    margin: 0 auto;
}

.provider-auth-heading {
    max-width: 880px;
    margin: 0 auto 52px;
    text-align: center;
}

.provider-auth-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #93c5fd;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.provider-auth-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: #f8fafc;
}

.provider-auth-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
}

.provider-auth-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.provider-auth-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(15, 46, 92, 0.96), rgba(2, 6, 23, 0.94));
    border: 1px solid rgba(96, 165, 250, 0.26);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: 0.35s ease;
}

.provider-auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.provider-auth-card:hover {
    transform: translateY(-7px);
    border-color: rgba(147, 197, 253, 0.72);
    box-shadow: 0 30px 75px rgba(37, 99, 235, 0.26);
}

.provider-auth-card:hover::before {
    opacity: 1;
}

.provider-auth-card-head,
.provider-auth-steps,
.provider-auth-btn {
    position: relative;
    z-index: 1;
}

.provider-auth-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.provider-auth-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.3);
}

.provider-auth-tag {
    display: inline-block;
    margin-bottom: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.13);
    border: 1px solid rgba(125, 211, 252, 0.28);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
}

.provider-auth-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
}

.provider-auth-steps {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
    counter-reset: authStep;
}

.provider-auth-steps li {
    position: relative;
    padding: 16px 16px 16px 56px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(96, 165, 250, 0.16);
    counter-increment: authStep;
}

.provider-auth-steps li::before {
    content: counter(authStep);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.provider-auth-steps strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15.5px;
}

.provider-auth-steps span {
    display: block;
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.7;
}

.provider-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
    transition: 0.3s ease;
}

.provider-auth-btn.secondary {
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.provider-auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

.provider-auth-benefit {
    margin-top: 46px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(96, 165, 250, 0.28);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
}

.provider-auth-benefit-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.13);
    border: 1px solid rgba(125, 211, 252, 0.28);
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 800;
}

.provider-auth-benefit h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 26px;
}

.provider-auth-benefit p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.provider-auth-benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.provider-auth-benefit-list div {
    padding: 20px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 46, 92, 0.9), rgba(2, 6, 23, 0.88));
    border: 1px solid rgba(96, 165, 250, 0.22);
    text-align: center;
}

.provider-auth-benefit-list strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 28px;
}

.provider-auth-benefit-list span {
    color: #bfdbfe;
    font-size: 13.5px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .provider-auth-layout,
    .provider-auth-benefit {
        grid-template-columns: 1fr;
    }

    .provider-auth-benefit-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .provider-auth-section {
        padding: 70px 16px;
    }

    .provider-auth-heading {
        margin-bottom: 36px;
    }

    .provider-auth-heading p {
        font-size: 15.5px;
    }

    .provider-auth-layout {
        gap: 20px;
    }

    .provider-auth-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .provider-auth-card-head {
        align-items: flex-start;
    }

    .provider-auth-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        font-size: 24px;
    }

    .provider-auth-card h3 {
        font-size: 21px;
    }

    .provider-auth-steps li {
        padding: 15px 14px 15px 52px;
    }

    .provider-auth-benefit {
        padding: 24px 18px;
        border-radius: 24px;
        text-align: center;
    }

    .provider-auth-benefit h3 {
        font-size: 22px;
    }

    .provider-auth-benefit-list {
        grid-template-columns: 1fr;
    }
}