 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Montserrat", sans-serif;
 }

 html,
 body {
     /* height: 100%; */
     margin: 0;
 }



 body {
     background: linear-gradient(180deg, #E3F3FB 0%, #ffffff 30%);
     color: #03304c;
     padding: 0;
     /* display: flex;
     justify-content: center; */
 }




 
/* ================start- NAVIGATION SECTION ==================== */
.jobVac-header {
    width: 100%;
    background: #ffffff;
}

.jobVac-nav {
    padding: 0 40px;
    background-color: #E3F3FB;
    border-bottom: 2px solid #69BBDD;
}

.jobVac-nav-inner {
    max-width: 1250px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ===========================
      LOGO BLOCK
=========================== */

.jobVac-logo-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.jobVac-logo-img {
    width: 42px;
    height: auto;
}

.jobVac-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.jobVac-brand {
    font-size: 22px;
    font-weight: 700;
    color: #0B1957;
}

.jobVac-tagline {
    font-size: 13px;
    font-weight: 500;
    color: #5784E6;
}


/* ===========================
       MENU LINKS
=========================== */

.jobVac-menu {
    display: flex;
    gap: 28px;
}

.jobVac-menu a {
    font-size: 16px;
    color: #3b4455;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.jobVac-menu a:hover,
.jobVac-menu a.active {
    color: #3365ff;
}


/* ===========================
       AUTH BUTTONS
=========================== */

.jobVac-auth {
    display: flex;
    gap: 12px;
}

.jobVac-auth button {
    padding: 8px 18px;
    font-size: 15px;
    border: 1px solid #3365ff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
    color: #3365ff;
    transition: all .25s ease;
}


.jobVac-employer {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid #3365ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #3365ff;
  transition: all .25s ease;
  text-decoration: none;
}

.jobVac-auth a:hover {
  background: #3365ff;
  color: #fff;

}


.jobVac-auth button:hover {
    background: #3365ff;
    color: #fff;
}

/* ===========================
       MOBILE
=========================== */
@media (max-width: 900px) {
    .jobVac-nav-inner {
        flex-direction: column;
        height: auto;
        gap: 14px;
        padding: 15px 0;
    }

    .jobVac-auth {
        flex-wrap: wrap;
        justify-content: center;
    }
}



/* ========================nav-end========================= */


/* - ============================start-login-register============================ - */

/* Popup Container */
.jobVac-buttons {
  display: flex;
  gap: 15px;
}

.jobVac-buttons button {
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 9;
  backdrop-filter: blur(5px);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 16px;
  width: 380px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
  transition: all 0.25s ease;
}

.popup-box {
  padding: 35px 30px;
  position: relative;
}

.popup-box h2 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 24px;
  color: #111;
}

.subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.social:hover {
  background: #f7f7f7;
}

.social img {
  width: 18px;
  height: 18px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider span {
  background: #fff;
  padding: 0 8px;
  color: #999;
  font-size: 13px;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: -1;
}

.popup input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.popup input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-primary {
  width: 100%;
  background: #0066ff;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 10px;
  margin-top: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0055e6;
}

.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
  font-size: 13px;
  color: #444;
}

/* label with checkbox + text */
.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: #444;
}

/* checkbox styling for consistent look */
.remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0066ff;
  /* modern blue for checked state (supported browsers) */
  border-radius: 4px;
}

/* forgot link style */
.remember-row .forgot {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  white-space: nowrap;
  /* avoid breaking the link text */
}


.switch {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.switch a {
  color: #007bff;
  text-decoration: none;
}

.close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}

.close:hover {
  color: #000;
}


@media (max-width: 360px) {
  .remember-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .remember-row .forgot {
    align-self: flex-end;
    /* keep 'Forgot' on the right if possible */
  }
}


/* - ============================end-login-register============================ - */







.cnt-wrap {
    max-width: 1180px;
    margin: 40px auto;
    padding: 36px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff, #fff);
    box-shadow: 0 8px 30px rgba(12, 35, 63, 0.06);
    position: relative;
    overflow: hidden;
}

.cnt-grid {
    display: flex;
    gap: 44px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- Left hero ---------- */
.cnt-left {
    flex: 1;
    min-width: 320px;
    padding: 12px 6px;
}

.cnt-eyebrow {
    font-size: 12px;
    color: #6c7a86;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
}

.cnt-headline {
    font-size: 44px;
    line-height: 1.03;
    color: #0b2a45;
    margin: 0 0 18px;
    font-weight: 800;
}

.cnt-headline .cnt-accent {
    color: #0a66c2
}

.cnt-sub {
    color: #516673;
    font-size: 15px;
    max-width: 520px;
    margin-bottom: 28px;
}

/* contact items */
.cnt-contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px
}

.cnt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.cnt-icon-wrap {
    min-width: 44px;
    height: 44px;
    background: #f0f8ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cnt-contact-title {
    font-weight: 700;
    color: #152d43;
    margin-bottom: 4px;
    font-size: 14px;
}

.cnt-contact-text {
    color: #445e6f;
    font-size: 15px
}

/* ---------- Right card form ---------- */
.cnt-card-wrap {
    flex: 0 0 480px;
    min-width: 300px;
    padding: 6px
}

.cnt-card {
    background: white;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(12, 35, 63, 0.06);
    border: 1px solid rgba(10, 102, 194, 0.04);
}

/* inner rounded area like reference */
.cnt-card-inner {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
}

/* inputs */
.cnt-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cnt-field {
    display: block
}

.cnt-label {
    display: block;
    font-size: 13px;
    color: #365062;
    margin-bottom: 6px;
    font-weight: 600
}

.cnt-input,
.cnt-select,
.cnt-textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(10, 30, 60, 0.06);
    background: #f7fbff;
    color: #0c324f;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow .15s, border-color .15s;
}

.cnt-input:focus,
.cnt-select:focus,
.cnt-textarea:focus {
    border-color: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.06);
}

.cnt-textarea {
    min-height: 110px;
    resize: vertical
}

/* CTA — pill with circular icon on left */
.cnt-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 6px
}

.cnt-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, #1984ff, #0a66c2);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(10, 102, 194, 0.18);
}

.cnt-cta .cnt-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-right: 6px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(12, 35, 63, 0.08);
}

.cnt-cta .cnt-cta-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a66c2;
}

/* small note under CTA */
.cnt-note {
    font-size: 13px;
    color: #6a7883;
    margin-top: 10px
}

/* ---------- responsive ---------- */
@media (max-width:980px) {
    .cnt-grid {
        flex-direction: column;
        padding: 8px
    }

    .cnt-card-wrap {
        width: 100%
    }

    .cnt-left {
        order: 2;
        text-align: center
    }

    .cnt-contacts {
        align-items: center
    }
}

@media (max-width:520px) {
    .cnt-headline {
        font-size: 30px
    }

    .cnt-card {
        padding: 18px
    }

    .cnt-cta {
        width: 100%;
        justify-content: center
    }

    .cnt-cta .cnt-cta-icon {
        display: none
    }
}






/* =========================start-of-footer===================================== */


.job-foot-footer {
  background: linear-gradient(180deg,#041033 0%, #02061a 100%);
  color: #dbe9ff;
  padding: 48px 6%;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 -6px 30px rgba(2,8,30,0.25);
}

/* wrapper grid */
.job-foot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

/* columns */
.job-foot-col {}

/* logo block */
.job-foot-logowrap {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.job-foot-logoimg {
  width: 58px;
  height: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  padding: 6px;
}

.job-foot-brand {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.job-foot-tagline {
  margin: 2px 0 0;
  font-size: 13px;
  color: #8fc5ff;
  font-weight: 600;
}

/* short about */
.job-foot-about {
  margin-top: 10px;
  color: #bcd7ff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
}

/* headings */
.job-foot-heading {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* link lists */
.job-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-foot-links li {
  margin-bottom: 10px;
}

.job-foot-links a {
  color: #cfe2ff;
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease, transform .18s ease;
}

.job-foot-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* support column */
.job-foot-support {
  color: #dceeff;
  font-size: 14px;
  margin: 6px 0;
}

.job-foot-support a {
  color: #fff;
  text-decoration: underline;
}

/* CTA button in footer (subtle) */
.job-foot-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: linear-gradient(90deg,#2c7bff,#6ab3ff);
  color: #001331;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(66,133,244,0.12);
}

/* bottom copyright */
.job-foot-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.job-foot-bottom p {
  color: #9fb0d9;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.2px;
}

/* responsiveness */
@media (max-width: 980px) {
  .job-foot-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .job-foot-about { max-width: 100%; }
}

@media (max-width: 640px) {
  .job-foot-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-foot-logowrap { align-items: flex-start; }
  .job-foot-cta { width: 100%; text-align: center; }
}

/* =========================end-of-footer===================================== */