*{
  font-family: "Poppins", sans-serif;
}

button{
  padding: 0;
  background: none;
  border: none;
}

.pdas-form {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* SECTION TITLE */
.pdas-form h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #1a1a1a;
}

.pdas-form .sub-text {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

/* GRID */
.pdas-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUTS */
.pdas-form input {
  /* width: 100%; */
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.pdas-form input:focus {
  border-color: #5271ff;
  box-shadow: 0 0 5px rgba(82,113,255,0.3);
}

/* FULL WIDTH */
.pdas-form .full {
  grid-column: span 2;
}

/* SECTION BOX */
.pdas-form .section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* RADIO & CHECKBOX */
.pdas-form .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdas-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 23px;
  color: #717171;
}

.pdas-form input[type="checkbox"],
.pdas-form input[type="radio"] {
  width: auto;
}

/* CONFIRM BOX */
.pdas-form .confirm {
  background: #f4f7ff;
  padding: 15px;
  border-radius: 10px;
  font-size: 13px;
}

/* BUTTON */
.pdas-form button input[type="submit"] {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #5271ff, #2e4bff);
  color: white;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.pdas-form button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(82,113,255,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .pdas-form .grid {
      grid-template-columns: 1fr;
  }

  .pdas-form .full {
      grid-column: span 1;
  }

  .pdas-form .options {
      grid-template-columns: 1fr;
  }
}
/*Register-visit End*/

