/*================================================
Addmission Form  Area CSS
=================================================*/

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  color: #bbb;
  border-bottom: 3px solid #eee;
}

.step-item.active {
  color: #000;
  font-weight: bold;
  border-color: #3b82f6;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

/* Base buttons style */
.next-btn,
.prev-btn,
.submit-btn {
  margin-top: 25px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.next-btn:hover,
.prev-btn:hover,
.submit-btn:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

/* Arrow animation (Next only) */
.next-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.next-btn:hover .arrow {
  transform: translateX(5px);
}

/* Optional: Prev button arrow animation (left) */
.prev-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.prev-btn:hover .arrow {
  transform: translateX(-5px);
}

.date-wrapper {
  position: relative;
}

.date-input {

  height: 55px;
  width: 100%;

  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #fff;
  color: #111827;
}

.parent-card {
    background: #ffffff;
    border: 1px solid #d8d1d1;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.father-card {
    border-top: 4px solid #2563eb;
}

.mother-card {
    border-top: 4px solid #ec4899;
}

.guardian-card {
    border-top: 4px solid #5a0d89;
}

.student-card {
    border-top: 4px solid #23c923;
}

.section-title {
    margin-bottom: 15px;
    font-weight: 600;
}
