﻿/* =========================================================
   Public Registration – Page shell
========================================================= */
.public-reg-page {
    min-height: 100vh;
    padding: 48px 16px 64px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Soft premium background */
    background: radial-gradient(circle at top, #f3faf9 0%, #e8f3f2 36%, #f5f7fb 72%), linear-gradient(180deg, #f8fafb 0%, #eef3f4 45%, #f5f5f9 100%);
}

/* =========================================================
   Corporate Premium Header (clean + luxury)
========================================================= */
.public-reg-header {
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 28px 34px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(17, 88, 87, 0.15);
    /* Subtle corporate shadow */
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    position: relative;
}

    /* Subtle gold line – luxury signature */
    .public-reg-header::before {
        content: "";
        position: absolute;
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 4px;
        border-radius: 3px;
        background: #d4af37;
    }

    /* Typography inside header */
    .public-reg-header h1,
    .public-reg-header .mud-typography-h3,
    .public-reg-header .mud-typography-h4,
    .public-reg-header .app-page-header__title {
        margin: 0 0 6px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #1b1f24;
    }

    .public-reg-header p,
    .public-reg-header .mud-typography-body2,
    .public-reg-header .app-page-header__subtitle {
        margin: 0;
        max-width: 640px;
        font-size: 0.96rem;
        color: #4b5563;
    }

/* Mobile refinement */
@media (max-width: 768px) {
    .public-reg-header {
        margin: 0 12px 24px;
        padding: 20px 20px;
        border-radius: 10px;
    }

        .public-reg-header::before {
            top: 12px;
            bottom: 12px;
        }
}


/* =========================================================
   Form wrapper
========================================================= */
.public-reg-formWrap {
    max-width: 880px;
    margin: 0 auto;
}

/* Public flavor for the registration card */
.corp-card.corp-card--public {
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

/* =========================================================
   Responsive adjustments
========================================================= */
@media (max-width: 768px) {
    .public-reg-page {
        padding: 24px 12px 40px;
    }

    .public-reg-header {
        margin: 0 12px 24px;
        padding: 18px 18px 20px;
        border-radius: 14px;
    }

        .public-reg-header::after {
            right: -80px;
            top: -60px;
            width: 180px;
            height: 180px;
        }

    .corp-card.corp-card--public {
        padding: 24px 18px;
    }
}
