/* UTILITIES */

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

/* PAGE */
.quiz-page {
  color: #000;
  background: #FFC857;
}

/* Quiz home */
.quiz-page .home-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.quiz-page .home-container .quiz-header {
  padding: 8vh 0 10vh ;
}
.quiz-page .home-container .quiz-header .logo img {
  max-height: 15vh;
}
.quiz-page .home-container h1 {
  font-size: calc(1rem + 4vw);
  margin-bottom: 8vh;
}
.quiz-page .home-container .btn {
  font-size: calc(1rem + 1.5vw);
  min-width: 25vw;
  padding: 12px 50px 18px ;
}
.quiz-page .home-container .item-text p {
  margin-bottom: 0;
}
.quiz-page .home-container .item-text p:first-child {
  margin-bottom: 2vh;
}
#home {
  position: relative;
  overflow: hidden;
}
#home .note-img {
  position: absolute;
  top: 3%;
  width: auto;
  height: 97%;
}
#home .note-img.left {
  left: 1vw;
}
#home .note-img.right {
  right: 3vw;
}

/* Quiz end */
.end-container {
  width: 100vw;
  height: 100vh;
}
.end-container h5 {
  margin-bottom: 0;
}
.end-container form input {
  margin-bottom: 20px;
}
.end-container form button {
  width: 18vw;
  margin-bottom: 20px;
}
.end-container .btn {
  width: 18vw;
}

/* FORMS */
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
input {
  width: 18vw;
  padding: 12px 16px;
  font-size: 14px !important;
  line-height: 1.2 !important;
  border: 5px solid #fff;
  box-shadow: 0 0.1rem 1.4rem 0 rgba(86, 185, 235, 0.5);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
input::placeholder {
  color: #aaa;
}

/* BUTTONS */
.btn[disabled]:hover {
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
