/* signup.css */
/* Navbar Styles */
.navbar {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
   /* Small gap between text & icon */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0066cc;
}

.logo-img {
  width: 22px;
  height: auto;
}

/* Nav Links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #0066cc;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto; /* Pushes it to extreme right */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.signup-container {
  margin-top: 80px; /* Or more, depending on your navbar height */
}

/* Container */
.signup-container {
  max-width: 780px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.5s ease;
}

.signup-container h2 {
  text-align: center;
  color: #0066cc;
  margin-bottom: 2rem;
}

/* Form Steps */
.form-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.form-step.active {
  display: flex;
}

label {
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
}

label input,
label textarea,
label select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.4rem;
}

/* Dropdowns */
.custom-dropdown {
  margin-bottom: 1rem;
  max-width: 100%;
  position: relative;
}

.dropdown-btn {
  padding: 0.75rem 1rem;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  padding: 1rem;
  display: none;
  z-index: 1000;
}

.dropdown-content label {
  display: block;
  margin-bottom: 0.5rem;
}

#customSkillInput {
  margin-top: 0.5rem;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

/* Buttons */
button {
  margin-top: 1.2rem;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #004a99;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .signup-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .step-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .signup-container h2 {
  text-align: center;
  color: #0066cc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
}


.aadhaar-verification label {
  margin: 1rem 0;
  font-weight: 500;
}

#aadhaarStatus {
  padding-top: 5px;
}

#aadhaarOTPSection input {
  width: 100%;
  margin: 0.3rem 0;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
