/* Registration Form Container */
.form-container {
  width: 50%;
  padding-top: 2px;
  margin-top: 150px  ;
  margin: 50px auto; /* Centering the form */
  padding: 40px 30px;
  background: #dde1e7;
  border-radius: 10px;
  box-shadow: -3px -3px 7px #ffffff73,
              2px 2px 5px rgba(94,104,121,0.288);
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px; /* Add space between heading and form */
}

/* Input Group Styling */
.input-group {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column; /* Stack label and input vertically */
}

.input-group label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.input-group input,
.input-group select {
  height: 45px;
  padding-left: 15px;
  outline: none;
  border: none;
  font-size: 16px;
  background: #dde1e7;
  color: #595959;
  border-radius: 8px;
  box-shadow: inset 2px 2px 5px #BABECC,
              inset -5px -5px 10px #ffffff73;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  box-shadow: inset 1px 1px 2px #BABECC,
              inset -1px -1px 2px #ffffff73;
}

/* Aadhar Number Input Alignment */
.aadhar-container {
  display: flex;
  gap: 10px;
}

.aadhar-container input {
  width: 30%;
  height: 45px;
  padding-left: 10px;
  text-align: center;
  outline: none;
  border: none;
  font-size: 16px;
  background: #dde1e7;
  color: #595959;
  border-radius: 8px;
  box-shadow: inset 2px 2px 5px #BABECC,
              inset -5px -5px 10px #ffffff73;
}

.aadhar-container input:focus {
  box-shadow: inset 1px 1px 2px #BABECC,
              inset -1px -1px 2px #ffffff73;
}

/* File Input Styling */
.input-group input[type="file"] {
  border: none;
  padding: 5px;
  background-color: #f0f0f0;
  border-radius: 8px;
  font-size: 16px;
}

/* Login Container Styling */
.login-container {
  text-align: center;
  margin-top: 20px;
}

.login-container a {
  color: #007bff;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

/* Button Styling */
button {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  background: #dde1e7;
  border-radius: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #595959;
  box-shadow: 2px 2px 5px #BABECC,
              -5px -5px 10px #dde1e7;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #c2c6cc;
}

button:focus {
  box-shadow: inset 2px 2px 5px #BABECC,
              inset -5px -5px 10px #dde1e7;
  color: #3498db;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .form-container {
    width: 90%;
    padding: 20px;
  }

  .aadhar-container input {
    width: 30%;
    padding: 5px;
  }
}