  /* ---------- Base ---------- */
  :root {
    --primary1: #005DE2;
    --bg-input1: #f5f4f6;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
  }

  /* ---------- Layout ---------- */
  .Employes-container {
    display: flex;
    min-height: 100vh;
    padding: 0px;
      /*      flex-wrap: wrap;*/
  }

  .Employes-image-section {
    flex: 1 1 70%;
    min-height: 300px;
    background: url("https://skillconnect.com/development/skillconnect/assets/2025/main_images/Welcome.png") center / cover no-repeat;
  }



  .Employes-form-section {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 100px 50px 70px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
  }

  /* ---------- Tabs ---------- */
  .Employes-tabs {
    display: flex;
    gap: 24px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 24px;
    color: #1A1818;
  }

  .Employes-tab {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    font-weight: 500;
  }

  .Employes-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary1);
  }

  /* ---------- Typography ---------- */
  .Employes-title {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 18px 0;
    line-height: 50px;
    font-family: "Open Sans", Arial, sans-serif;
  }

  .Employes-title1 {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 0px 0;
    line-height: 50px;
    font-family: "Open Sans", Arial, sans-serif;
  }

  /* ---------- Form elements ---------- */
  .Employes-input,
  .Employes-select {
    width: 100%;
    padding: 18px 16px;
    border-radius: 10px;
    border: none;
    background: var(--bg-input1);
    font-size: 14px;
    margin-bottom: 16px;
  }

  .Employes-select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 48px;
    /* Add space for arrow */
    border-radius: 10px;
    border: none;
    background: var(--bg-input1);
    font-size: 14px;
    margin-bottom: 16px;
    /* Hide native arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Custom arrow (gray down arrow) */
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
  }

  .Employes-name-row {
    display: flex;
    gap: 16px;
  }

  .Employes-name-row .Employes-input {
    flex: 1;
    margin-bottom: 16px;
  }

  /* Chrome, Safari, Edge, Opera */
  .Employes-input::-webkit-outer-spin-button,
  .Employes-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  .Employes-input[type=number] {
    -moz-appearance: textfield;
  }



  /* Password wrapper for icon positioning */
  .Employes-password-wrapper {
    position: relative;
  }

  .Employes-eye-toggle {
    position: absolute;
    right: 16px;
    top: 38%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    cursor: pointer;
  }

  .Forgetpassword {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 0px 0px 10px 0px;
    color: #1A1818 !important;
    text-decoration: underline;

  }

  /* ---------- CTA button ---------- */
  .Employes-button {
    width: 100%;
    padding: 15px;
    background: var(--primary1);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
  }

  .Employes-button:hover {
    /* box-shadow: 0 8px 20px rgba(0, 93, 226, 0.3), 0 4px 12px rgba(0, 93, 226, 0.2); */
    /* transform: translateY(-2px) scale(1.01); */
    transition: all 0.5s ease;
    background-color: #043B8E;
  }


  .Employes-button1 {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--primary1);
    border: 1px solid var(--primary1);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
  }

  .Employes-button1:hover {
    /* box-shadow: 0 8px 20px rgba(0, 93, 226, 0.3), 0 4px 12px rgba(0, 93, 226, 0.2);
    transform: translateY(-2px) scale(1.01); */
    /* transition: all 0.3s ease;
    color: #043B8E;
    border: 1px solid #043B8E; */
  }

  .Employes-button2 {
    width: 100%;
    max-width: 480px;
    padding: 15px;
    background: var(--primary1);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
  }

  .Employes-button2:hover {
    /* box-shadow: 0 8px 20px rgba(0, 93, 226, 0.3), 0 4px 12px rgba(0, 93, 226, 0.2);
    transform: translateY(-2px) scale(1.01); */
    transition: all 0.3s ease;
    background-color: #043B8E;
  }


  /* ---------- Socials ---------- */
  .Employes-socials {
    margin: 28px 0 8px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-family: "Open Sans", Arial, sans-serif;
  }

  .Employes-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .Employes-social-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    cursor: pointer;
    background-color: #F6F6F6;
    padding: 8px;
    border-radius: 5px;
  }

  /* ---------- Footer links ---------- */
  .Employes-footer {
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
    line-height: 20px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1A1818;

  }

  .Employes-footer a {
    color: #000;
    text-decoration: underline;
  }


  /* Welcome page css start*/

  .employer-hero {
    width: 100%;
    min-height: 100vh;
    background-image: url("https://skillconnect.com/development/skillconnect/assets/2025/main_images/background_image.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
  }

  /* Card container */
  .employer-card {
    background-color: #eaf3ff;
    border-radius: 20px;
    padding: 30px 30px 60px 30px;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  /* Image inside card */
  .employer-card-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
  }

  .employer-text-container {
    max-width: 548px;
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  /* Title */
  .employer-card-title {
    font-size: 36px;
    font-family: 'Open Sans', sans-serif;
    line-height: 52px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
  }

  /* Description */
  .employer-card-text {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #333;
    margin-bottom: 36px;
  }

  /* CTA Button (Text Based) */
  .employer-cta-button {
    max-width: 480px;
    width: 100%;
    display: inline-block;
    padding: 14px 28px;
    background-color: #0060ff;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .employer-cta-button span {
    font-size: 18px;
    margin-left: 6px;
  }

  .employer-cta-button:hover {
    background-color: #004acc;
  }


  /* Welcome page css end */

  /* ---------- Responsive ---------- */

  @media (max-width: 1200px) {
    .employer-hero {
      min-height: 80vh;
    }

    .employer-hero {
      align-items: flex-start;
      padding: 140px;
    }
  }

  @media (max-width: 1000px) {
    .employer-hero {
      align-items: flex-start;
      padding: 110px;
    }
  }


  @media (min-width: 600px) and (max-width: 800px) {
    .Employes-image-section {
      flex: 1 1 70%;
      min-height: 550px;
    }

    .Employes-image-section1 {
      flex: 1 1 70%;
      min-height: 550px;

    }
  }

  @media (max-width: 798px) {
    .Employes-container {
      flex-direction: column;
    }

    .Employes-form-section {
      max-width: 100%;
      margin: 0 auto;
      padding: 30px 20px !important;
    }

    .Employes-title {
      font-size: 24px;
      margin: 0 0 32px 0;
      line-height: 30px;
      font-family: "Open Sans", Arial, sans-serif;
    }

    .Employes-title1 {
      font-size: 24px;
      margin: 0 0 0px 0;
      line-height: 30px;
      font-family: "Open Sans", Arial, sans-serif;
    }

    /* welcome page css start */
    .employer-hero {
      min-height: 56vh;
      padding: 80px;
    }

    .mHide {
      display: none !important;
    }

    .employer-card {
      padding: 20px;
    }

    .employer-card-img {
      margin-bottom: 20px;
    }

    .employer-card-title {
      font-size: 22px;
      line-height: 28px;
      margin-bottom: 4px;
    }

    .employer-card-text {
      font-size: 14px;
      margin-bottom: 24px;
    }

    .employer-cta-button {
      font-size: 14px;
      padding: 12px 20px;
    }

    /* Welcome page css end */

  }

  @media (max-width: 510px) {
    .employer-hero {
      min-height: 46vh;
      padding: 40px;
    }

  }

  @media (min-width: 420px) and (max-width: 600px) {
    .Employes-image-section {
      flex: 1 1 70%;
      min-height: 450px;

    }

    .Employes-image-section1 {
      flex: 1 1 70%;
      min-height: 450px;

    }
  }

  @media (max-width: 480px) {
    .Employes-name-row {
      display: block;
    }
  }