  .registration-container {
    display: flex;
    max-width: 1100px;
    min-height: 90vh;
    margin: 10vh auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(58, 95, 176, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
  }


.error {
  color: red;
  font-size: 15px;
  margin-top: 5px;
}

  .icon-wrapper img {
    width: 300px;
    height: 100px;
    margin: 10vh 0 10vh 0;
  }

  .left-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .left-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
  }

  .right-section {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-header {
    margin-bottom: 25px;
  }

  .form-header h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: 700;
  }

  .form-header p {
    color: #718096;
    font-size: 13px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #4a5568;
    font-weight: 600;
    font-size: 13px;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #3a5fb0;
    box-shadow: 0 0 0 3px rgba(58, 95, 176, 0.1);
  }

  .phone-group {
    display: flex;
    gap: 10px;
  }

  .country-code {
    flex: 0 0 100px;
  }

  .phone-input {
    flex: 1;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    margin: 18px 0;
  }

  .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #3a5fb0;
    flex-shrink: 0;
  }

  .checkbox-group label {
    color: #4a5568;
    font-size: 13px;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
  }

  .checkbox-group label a {
    color: #3a5fb0;
    text-decoration: none;
    font-weight: 600;
  }

  .submit-btn {
    width: 100%;
    padding: 12px;
    background: #3a5fb0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .submit-btn:hover {
    background: #2d4a8f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58, 95, 176, 0.3);
  }



    .signup-link {
    text-align: center;
    margin-top: 25px;
    color: #718096;
    font-size: 14px;
  }

  .signup-link a {
    color: #3a5fb0;
    text-decoration: none;
    font-weight: 600;
  }

  .signup-link a:hover {
    text-decoration: underline;
  }

  @media (max-width: 1024px) {
    .registration-container {
      max-width: 90%;
    }
  }

  @media (max-width: 768px) {
    .registration-container {
      flex-direction: column;
      max-width: 95%;
      min-height: auto;
      margin: 2vh auto;
    }

    .left-section {
      border-radius: 16px 16px 0 0;
      padding: 35px 25px;
      min-height: 250px;
    }

.icon-wrapper img {
  margin:5px 0 5px 0; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


    .left-content h2 {
      font-size: 22px;
    }

    .left-content p {
      font-size: 13px;
    }

    .right-section {
      padding: 35px 25px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .form-group {
      margin-bottom: 15px;
    }
  }

  @media (max-width: 480px) {
    .registration-container {
      margin: 1vh auto;
      border-radius: 12px;
    }

    .left-section {
      border-radius: 12px 12px 0 0;
      padding: 30px 20px;
      min-height: 220px;
    }

.icon-wrapper img {
  margin:5px 0 5px 0; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
    .left-content h2 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .left-content p {
      font-size: 12px;
    }

    .right-section {
      padding: 30px 20px;
    }

    .form-header {
      margin-bottom: 20px;
    }

    .form-header h3 {
      font-size: 20px;
    }

    .form-header p {
      font-size: 12px;
    }

    .phone-group {
      flex-direction: column;
      gap: 12px;
    }

    .country-code {
      flex: 1;
    }

    .form-group input,
    .form-group select {
      padding: 11px 12px;
      font-size: 14px;
    }

    .checkbox-group {
      margin: 15px 0;
    }

    .checkbox-group label {
      font-size: 12px;
    }

    .submit-btn {
      padding: 13px;
      font-size: 14px;
    }


    .signup-link {
      margin-top: 20px;
      font-size: 13px;
    }
  }

