/* schedule */
    .schedule-box {
      border: 2px solid #eee;
      padding: 18px 22px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.25s ease;
      background: #fff;
    }

    .schedule-box:hover {
      border-color: #d63384;
    }

    .schedule-box.selected {
      border-color: #d63384;
      background: #fff0fa;
    }

    .schedule-box .check {
      margin-left: auto;
      color: #d63384;
      display: none;
    }

    .schedule-box.selected .check {
      display: inline-block;
    }
    /* section2 */

    .provider-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 25px;
    cursor: pointer;
    transition: 0.3s;
    height: 179px;           /* equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.provider-box:hover,
.provider-box.active {
    border-color: #4b7bec;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.provider-box.selected {
  border-color: #d63384;
  background: #fff0fa;
}
.dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

/* small gray dots */
.dot {
    width: 10px;
    height: 10px;
    background: #bfbfbf;
    border-radius: 50%;
}

/* Medium box – smaller group */
.dots-grid {
    width: 70px;
}

/* Large box – larger group */
.dots-grid-large {
    width: 90px;
}

.provider-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.provider-sub {
    color: #777;
    font-size: 15px;
}

/* section3 */
.form-field {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    padding-left: 15px;
    font-size: 15px;
}

.form-field:focus {
    border-color: #9c7bf1;
    box-shadow: 0 0 0 0.15rem rgba(156, 123, 241, 0.2);
}


/* section4 */

.continue-btn {
    background:#d63384;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.continue-btn:hover {
    opacity: 0.9;
}

/* section6 */

.form-otp {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form-otp-control {
    width: 70px;
    height: 70px;
    font-size: 28px;
    text-align: center;
    border: 2px solid #dcdcdc;
    border-radius: 12px;
    outline: none;
    transition: 0.2s ease;
}

.form-otp-control:focus {
    border-color: #000;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

#continueBtn4 {
  background: #f7c7df;
  border-radius: 30px;
  transition: background 0.3s, opacity 0.3s;
  opacity: 0.5;
  cursor: not-allowed;
  border: none;
  color: white;
  padding: 12px 40px;
  font-size: 17px;
  font-weight: 600;
}

/* Button enabled - dark pink */
#continueBtn4:enabled {
  background: #d63384;
  opacity: 1;
  cursor: pointer;
}
/* secton7 */
.submit-btn{
   background:#d63384;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.try{
  font-size: 7px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


/* last-page */
  .wrapper {
            
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card {
            width: 320px;
            background: #fff;
            border-radius: 15px;
            
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .art-img {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 15px;
        }

        .title {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
        }

        .getbtn {
            background:var(--primary-color);
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
        }

        .getbtn:hover {
            background:#d86dd8b5;
        }
        .textcontaner{
          padding-bottom: 35px;
        }