/* ================================
   REGISTER PAGE – BASE
================================ */

.page-register {
    background: #1f2a44;
    padding-bottom: 200px;
}


/* ================================
   SHARED HERO (used on Register)
================================ */

.single-site-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
   
    overflow: hidden;
      min-height: 250px;
    max-height: 250px;
      border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}


/* Background image */
.single-site-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
        background-position-y: top 40%;
}

/* Content layer */
.company-hero-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}


.company-hero-title h1 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: #fff;
    text-align: center;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
     text-shadow: 
    0 2px 4px rgba(0,0,0,0.6),
    0 6px 12px rgba(0,0,0,0.4);
}


/* ================================
   REGISTER HERO – GLASS PANEL
================================ */

.page-register .company-hero-panel-inner {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(2px);

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);

    padding: 1.5rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}


/* ================================
   REGISTER CONTENT CARD
================================ */

.register-content {
    margin-top: 10px;
    
    padding: 0 20px;
}

.register-content .container {

    max-width: 1100px;
    margin: 0 auto;

    background: white;
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    
}


/* ================================
   REGISTER TITLE
================================ */

.register-title {
    text-align: center;
    font-size: 38px;
   
}


/* ================================
   FORM ENTRY AREA
================================ */

.register-entry {

    max-width: 720px;
    margin: 0 auto;
}


/* ================================
   OPTIONAL: FLUENT FORM TWEAKS
================================ */

.register-entry .fluentform_wrapper input,
.register-entry .fluentform_wrapper textarea,
.register-entry .fluentform_wrapper select {

    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.register-entry .fluentform_wrapper button.ff-btn-submit {

    background: black;
    color: white;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    transition: 0.25s;
}

.register-entry .fluentform_wrapper button.ff-btn-submit:hover {
    background: #222;
    transform: translateY(-2px);
}


/* ===============================
   MOBILE
=============================== */

@media (max-width: 900px) {

    .register-content .container {
        padding: 40px 24px;
    }

    .register-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

 

.page-register {
    
    padding-bottom: 0px;
}


.single-site-hero {

      min-height: 150px;
    max-height: 150px;

}
}