/* ----------------------------------------------
    Registration
    Last Modified: 8/12/23
---------------------------------------------- */

/* Set height of the entire page */
html, body {
  width: 100%;
  height: 100%;
}

/* Subheading styling */
#reg-subhead {
  font-weight: 400;
}

#app-subhead {
  font-weight: 700;
}

/* Section divider */
.featurette-divider {
  margin: 3rem 0;
}

/* Heading style for sections */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
  font-size: 50px;
}

/* Styling for registration info box */
.reg-info {
  background-color: #1E90FF;
  border-radius: 30px;
  width: 100%;
  padding: 10px;
}

/* Image styling */
img {
  border-radius: 10px;
}

/* Styling for application section */
.app {
  border-radius: 30px;
  background-color: gainsboro;
  width: 100%;
}

/* Styling for download button */
.d_button {
  border-radius: 10px;
  background-color: orange;
}

/* Styling for left and right sections */
.leftside, .rightside {
  width: 100%;
}

/* Slideshow container */
.slideshow {
  max-width: 600px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  opacity: 100%;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background opacity bg */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* The dot indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Active dot and hover effect */
.active, .dot:hover {
  background-color: #717171;
}