* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* body {
  margin-top: 50px;
} */

.image {
  width: 100%;
  height: 200px;
}

.radio {
  display: none;
}

.images {
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.images-inner {
  width: 500%;
  transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.image-slide {
  width: 20%;
  float: left;
}

.image-slide,
.fake-radio,
.radio-btn {
  transition: all 0.5s ease-out;
}

.fake-radio {
  margin-left: 10px;
}

#slide1:checked~.images .images-inner {
  margin-left: 0;
}

#slide2:checked~.images .images-inner {
  margin-left: -100%;
}

#slide3:checked~.images .images-inner {
  margin-left: -200%;
}

#slide1:checked~div .fake-radio .radio-btn:nth-child(1),
#slide2:checked~div .fake-radio .radio-btn:nth-child(2),
#slide3:checked~div .fake-radio .radio-btn:nth-child(3) {
  background: red;
}

.radio-btn {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  background: gray;
  display: inline-block !important;
  margin: 0 1px;
  cursor: pointer;
}

#slide1:checked~.labels .label:nth-child(1),
#slide2:checked~.labels .label:nth-child(2),
#slide3:checked~.labels .label:nth-child(3) {
  opacity: 1;
}

.label {
  opacity: 0;
  position: absolute;
}

@keyframes bullet {

  0%,
  33.32333333333334% {
    background: red;
  }

  33.333333333333336%,
  100% {
    background: gray;
  }
}

#play1:checked~div .fake-radio .radio-btn:nth-child(1) {
  animation: bullet 12300ms infinite -1000ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(2) {
  animation: bullet 12300ms infinite 3100ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(3) {
  animation: bullet 12300ms infinite 7200ms;
}

@keyframes slide {

  0%,
  25.203252032520325% {
    margin-left: 0;
  }

  33.333333333333336%,
  58.53658536585366% {
    margin-left: -100%;
  }

  66.66666666666667%,
  91.869918699187% {
    margin-left: -200%;
  }
}


.st-slider>#play1:checked~.images .images-inner {
  animation: slide 12300ms infinite;
}

.images img {
  width: 50%;
}

.images {
  width: 20%;
}

@keyframes caption {

  0%,
  33.32333333333334% {
    opacity: 1;
  }

  33.333333333333336%,
  100% {
    opacity: 0;
  }
}

#play1:checked~.labels .label:nth-child(1) {
  animation: caption 12300ms infinite -1000ms;
}

#play1:checked~.labels .label:nth-child(2) {
  animation: caption 12300ms infinite 3100ms;
}

#play1:checked~.labels .label:nth-child(3) {
  animation: caption 12300ms infinite 7200ms;
}

#homepage-slider {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: auto;
  width: 40%;
  padding: 60px;
  height: 330px;
  border-radius: 10px;
}

#signup_page {
  float: right;
  display: flex;
  flex-direction: column;
  margin-top: -260px;
  margin-right: 80px;
}

input {
  height: 30px;
  width: 400px;
  line-height: 10px;
  border-color: teal;
  border-top: none;
  border-left: none;
  border-right: none;
  border-width: 3px;
  margin-bottom: 10px;
  outline: none;
}

/* #signup label {
  color: black;
  letter-spacing: 3px;
  font-weight: bolder;
} */

#signup {
  margin-left: 405px;
  margin-top: 20px;
  width: 730px;
  height: 40px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: rgb(100, 173, 173);
  border-radius: 5px;
  color: white;
}

#signup:hover{
  background: teal;
  color: white;
}
#confirm:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: rgb(177, 171, 171);
}

/* #signup h1 {
  margin-bottom: 30px;
  margin-top: 10px;
  color: teal;
} */

p {
  font-size: 12px;
  color: teal;
}

h3 {
  font-weight: lighter;
  margin-left: 180px;
  margin-top: -25px;
}

a {
  color: teal;
  margin-left: 270px;
}

#heading {
  display: flex;
  height: 100px;
  align-items: center;
  background-color: rgb(241, 234, 234);
  margin-bottom: 20px;
}

#heading img {
  width: 150px;
  float: left;
  cursor: pointer;
}

#admin {
  margin-top: 100px;
  float: right;
  margin-right: 10px;
  width: 10%;
}

#admin a {
  color: teal;
  width: 100%;
  text-align: right;
}

@media all and (min-width:768px) and (max-width:1023px){
  #signup{
    margin-left: 320px;
    margin-top: 10px;
    width: 695px;
    height: 40px;
    border: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    letter-spacing: 3px;
    font-weight: bold;
    background-color: rgb(197, 185, 185);
}
}