/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

body {
  font-family: montserrat, arial, verdana;
}
html {
  scroll-behavior: smooth;
}
.hidden {
  display: none;
}

.button {
  width: 140px;
  cursor: pointer;
  padding: 1em;
  border-radius: 0.2em;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.5s ease;
  background-color: #ff8552;
}
.button:hover {
  background-color: #ff4f06;
}
.button.disabled {
  opacity: 0.5;
}
.button.disabled:hover {
  background-color: #ff8552;
}
h2.fs-title {
  font-family: "poppinssemibold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 25px;
}
.form {
  width: 100%;
  max-width: 40em;
  margin: auto;
  margin-top: 5em;
  padding: 3em;
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: #cdcfd1;
  color: #33312e;
  border-radius: 0.2em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.form .progress-bar {
  width: 100%;
  list-style-type: none;
  display: flex;
  padding: 0;
  justify-content: center;
}
.form .progress-bar li.progress-bar__dot {
  display: block;
  width: 1em;
  border-radius: 1000em;
  height: 1em;
  border: 0.2em solid #ff8552;
  background-color: white;
  cursor: pointer;
  transition: all 0.5s ease;
}
.form .progress-bar li.progress-bar__dot.full {
  background-color: #ff8552;
}
.form .progress-bar li.progress-bar__connector {
  display: block;
  width: 5em;
  border-radius: 1000em;
  height: 0.1em;
  background-color: #ff8552;
  margin-top: 0.45em;
}
.form label {
  font-weight: bold;
  font-size: 1.2em;
}
.form input {
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  box-sizing: border-box;
  margin-top: 0.5em;
  border: none;
  border-radius: 0.5em;
  background-color: #e6e6e6;
  font-size: 1em;
  font-family: "Raleway", sans-serif;
}
.form input:focus {
  border: none;
}
.form .button-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.form button#validate {
  margin: auto;
  background-color: #1a936f;
  width: 12em;
}
.form button#validate:hover {
  background-color: #12684e;
}
/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  /* CSS */
  .form {
    width: 20em;
    margin: auto;
    margin-top: 2em;
    padding: 2em;
    padding-top: 1em;
    padding-bottom: 2em;
  }
  .button {
    width: 100px;
    padding: 0.6em;
  }
}
