/* General Reset */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow-y: overlay;
}
:root {
--c3: #478778;  /* Jungle Green */
--c4: #73E3C2;
--c5: #478778;  /* Lincoln Green */
--c6: #2AAA8A;  /* Jade */
}

input,
button,
label,
textarea,
select {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* Bold headings */
}

p, label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* Normal text */
}

button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Background Styling */
body {
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh auto;
  margin: 0;
  background: linear-gradient(
    to bottom right,
    var(--c3) 0%,    /* Jungle Green */
    var(--c3) 30%,  
    var(--c6) 30%,   /* Jade */
    var(--c6) 60%,  
    var(--c4) 60%,   /* Light Aqua */
    var(--c4) 90%,  
    var(--c5) 100%   /* Lincoln Green */
  );
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}




/* Form Header Styling */
.form-header {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.form-header a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 8px;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}

.form-header a:hover {
  color: #478778;
}

.form-header a.active {
  border-bottom: 3px solid #2AAA8A;
  color: #2AAA8A;
}

/* Form Container */
.form-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  padding: 25px;
  margin: 20px;
  transition: transform 0.3s ease-in-out;
}

.form-container:hover {
  transform: scale(1.02);
}

/* Heading */
h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

/* Step Number */
.step-number {
  font-size: 1rem;
  color: #2AAA8A;
  font-weight: bold;
}

/* .form-header {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.form-header a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding-bottom: 8px;
}

.form-header a.active {
  border-bottom: 2px solid #0073e6;
  color: #0073e6;
}


.form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: fit-content ;
  max-width: 500px;
  padding: 20px;
  margin: 10px;
}

h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.step-number {
  font-size: 0.9rem;
  color: #28a745;
} */

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-group input,.boxedI,
.form-group select,.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.boxedI{
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.toggle-s{
  height: 0px;
  display: none;
  transition: all .6s;
}

.toggle-s-show{
  height: 100px;
  display: block;
  transition: all ease-in-out .6s;
  border-top-color:#ffffff !important ;
}
form.indice-user-registration-form input.error{
border: 1px solid red;
}


.university-college{
  display: block !important;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2AAA8A;
  outline: none;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 0.9rem;
}

.form-group.optional input {
  width: 100%;
  display: inline-block;
}

.form-group.optional .optional {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #999;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form-row .half {
  width: 48%;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, var(--c3), var(--c6));    color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  /* background-color: #0056b3; */
  background: linear-gradient(90deg, var(--c6), var(--c3));

}

.gender label,
.job-type label,
.education label {

  font-size: 0.9rem;
  color: #333;
}

.note {
  color: #555;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.note i {
  margin-right: 5px;
  color: #2AAA8A;
}

small {
  display: block;
  margin-top: -15px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #666;
}


.gender-group {
  display: flex;
  align-items: center;
  gap: 20px; /* Add space between each radio option */
  margin-bottom: 20px;
}

textarea::placeholder,input::placeholder {
  font-size: 14px;
  color: #666;
}

.gender-group label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.gender-group input {
  margin-right: 8px; /* Add space between the radio button and label text */
}
.phone-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.phone-group select {
  width: 25%; /* Set the width for the country code dropdown */
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 0.9rem;
}

.phone-group input {
  flex: 1; /* Take up the remaining space */
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 0.9rem;
}
.dob-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  height: 45px;
}

.dob-group input {
  width: 100%;
  border: none;
  outline: none;
  padding-left: 10px;
  padding-right: 60px; /* Leave space for optional text and icon */
  font-size: 0.9rem;
}

.optional-text {
  position: absolute;
  right: 40px; /* Adjust to position "Optional" */
  color: #aaa;
  font-size: 0.85rem;
}

.calendar-icon {
  position: absolute;
  right: 10px; /* Position the calendar icon */
  font-size: 1rem;
  color: #555;
  cursor: pointer;
}
/* Aligning job-type, education, and university-college in one row */
.job-type, .education, .university-college {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between elements */
  margin-bottom: 10px; /* Vertical spacing between each section */
}

.custom-file-container {
  position: relative;
}

.custom-file-input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.dob-group .error-message{
  right: 100px;
  position: absolute;
}

.phone-group .error-message{
  right: 10px;
  position: absolute;
}
.custom-file-label {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 1rem !important;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
  margin-bottom: 0px !important;
}

.upload-icon {
  text-align: right;
  font-size: 18px;
  color: gray;
}

.file-name {
  color: #555;
  font-weight: normal;
  font-size: 14px;
}

select.form-control {
  appearance: none;
  background: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Cpath fill="gray" d="M7 10l5 5 5-5z"/%3E%3C/svg%3E') no-repeat right 10px center;
  background-color: white;
  background-size: 12px;
  font-size: 1rem;
  color: #555;
}

/* Button styling */
.btn-primary {
  padding: 10px 20px;
  background-color: #2AAA8A;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
}
.btn-primary-back {
  padding: 10px 20px;
  background-color: #999;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 4px;
  overflow-x: hidden;
}

.btn-primary:hover {
  background-color: #2AAA8A;
}

/* Step number styling */
.step-number {
  font-size: 14px;
  color: #888;
}

.nav-but {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.nav-but > input:first-child {
  flex: 0 0 20%;
}

.nav-but > input:last-child {
  flex: 1;
}



.form-step{
  position: relative;
  visibility: visible;
  left: 0px;
}
.form-step-hide{
  position: absolute !important;
  visibility: hidden !important;
  left: -9999px !important;
}
.error-message {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}
.password-confirm-message{
  display: none;
}

.gender-group {
  display: flex;
  align-items: center;
  gap: 20px; /* Add space between each radio option */
  margin-bottom: 20px;
}

.gender-group label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  margin-top: 5px;
}

.gender-group input {
  margin-right: 8px; /* Add space between the radio button and label text */
}
@media (max-width: 768px) {
  #dob {
      display: block;
      width: 100%;
  }
}

.job-type label ,.education label{
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  margin-top: 5px;
  gap: 5px;

}
.job-type input,.education input{
  width: auto !important;
}
.education{
  flex-wrap: wrap;

}
.multi-select-container {
  width: 100%;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 40px;
  cursor: text;
}

.multi-select-container input {
  border: none;
  outline: none;
  flex-grow: 1;
  min-width: 10px;
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  padding: 5px;
  color: #555555;

}
/* For the entire document */
.dropdown::-webkit-scrollbar {
  width: 4px; /* Width of the scrollbar */
  height: 8px; /* Height of the scrollbar */
}

.dropdown::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track color */
}

.dropdown::-webkit-scrollbar-thumb {
  background: #888; /* Thumb color */
  border-radius: 1px; /* Rounded corners */
}

.dropdown::-webkit-scrollbar-thumb:hover {
  background: #555; /* Thumb color on hover */
}

.multi-select-container input::placeholder {
  color: #aaa;
}

.tag {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
      cursor: default;
    float: left;
  color: #555;
  padding: 5px 5px;
  margin: 5px 5px 5px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  width: auto;
  font-size: 14px;
}
.tags-container{
    display: flex !important;
    flex-flow: wrap;
    width: 100%;
}
.tag .remove-tag {
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
}

.dropdown {
  position: relative;
  width: 100%;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  font-size: 14px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  display: none; /* Hidden by default */
}

.dropdown div {
  padding: 10px;
  cursor: pointer;
}

.dropdown div:hover {
  background-color: #555;
  color: #fff;
}

.dropdown.active {
  display: block; /* Show when active */
}


#password-hint{
  display:none; color:red; font-size:12px;

}
.password-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#edit-pass-pass2 {
  width: 100%;
  padding-right: 40px;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 60%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #555;
}

.eye-icon:hover {
  color: #000;
}


.form-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.form-subtext {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.ttcontainer {


  background: white;

 
}

.multiselect-container {
  position: relative;
  width: 100%;

}

.multiselect-input {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 44px;
  background: white;
}

.search-input {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 5px;
  min-width: 50px;
  font-size: 16px;
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.selected-item {
  background-color: #e1f5fe;
  padding: 5px 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #0277bd;
  border: 1px solid #b3e5fc;
}

.selected-item .remove-btn {
  margin-left: 5px;
  cursor: pointer;
  color: #0288d1;
  font-weight: bold;
}

.dropdown-options {

  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 0 0 4px 4px;
}

.option-item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.option-item:hover {
  background-color: #f5f5f5;
}


.option-item.selected {
  background-color: #e1f5fe;
  color: #0277bd;
}

.submit-btn {
  background-color: #2AAA8A;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2AAA8A;
}

.results {
  margin-top: 20px;
  padding: 15px;
  background-color: #e8f5e9;
  border-radius: 4px;
  display: none;
}

.form-note {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
  font-style: italic;
}


.forgot-password-link {
  margin-top: 10px;
}

.forgot-password {
  font-size: 14px;
  color: #478778;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

