* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  /* background: #e2e0fe; */
  background: #5984bd;
  /* background: #FF9B50; */
  font-family: Roboto, Arial, sans-serif;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1201px) {
  form {
    margin: 20px 0;
    background-color: white;
    padding: 20px 100px;
    border-radius: 35px;
    -webkit-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    -moz-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    /* -webkit-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
    -moz-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
    box-shadow: 0px 0px 57px -37px rgb(253, 187, 94), 1; */
  }

  /* Centalizar ao meio */
  .form-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Create two equal columns that floats next to each other */
  /* .column {
    float: left;
    width: 50%;
    padding: auto;
    height: auto;
  } */

  /* start perubahan oktober 2024 */
  .columna {
    float: left;
    width: 40%;
    /* padding: 10px;
  height: 300px; */
    padding: auto;
    height: auto;
    /* Should be removed. Only for demonstration */
  }

  .columnb {
    float: left;
    width: 60%;
    /* padding: 10px;
  height: 300px; */
    padding: auto;
    height: auto;
    /* Should be removed. Only for demonstration */
  }

  .alur {
    width: 900px;
  }
  /* end perubahan oktober 2024 */

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  div .photo-info .logo {
    width: 70px;
    display: block;
    margin: 0 auto;
    border-radius: 30%;
    align-items: center;
    -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  }

  div .photo-info .jawa {
    width: 270px;
    display: block;
    margin: 0 auto;
    border-radius: 30%;
    align-items: center;
    -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  }

  .photo-info h5 {
    text-align: center;
  }

  .photo-info h4 {
    display: block;
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
    font-style: italic;
    font-weight: 300;
    color: #616161;
  }

  .photo-info h3 {
    display: block;
    font-size: 23px;
    margin-top: 20px;
    text-align: center;
    font-weight: 300;
    color: #616161;
  }

  form .input-block {
    margin-bottom: 15px;
  }

  .input-block.username input {
    background-image: url(img/person.png);
    background-repeat: no-repeat;
    background-position: left;
    background-position-x: 0px;
    background-origin: content-box;
    background-size: 20px;
    text-indent: 35px;
  }

  .input-block.password input {
    background-image: url(img/03-input-icon.png);
    background-repeat: no-repeat;
    background-position: left;
    background-position-x: 0px;
    background-origin: content-box;
    background-size: 20px;
    text-indent: 35px;
  }

  form .input-block input {
    width: 350px;
    height: 40px;
    display: block;
    margin-top: 8px;
    padding: auto;
    font-size: 14px;
    color: #685efd;
    border-radius: 5px;
    border: 1px solid #dddddd;
    outline: #685efd;
    transition: 250ms;
  }

  form .input-block input:hover {
    border: 1px solid #685efd;
  }

  form .danger {
    border: 1px solid #f84747;
    padding: 5px;
    border-radius: 5px;
    background-color: #fd5e5ea8;
    color: #ba0101;
    text-align: center;
    display: none;
  }

  form .btn-login {
    display: block;
    min-width: 120px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background-color: #685efd;
    color: white;
    border-radius: 35px;
    margin: auto;
    width: 200px;
    height: 35px;
    margin-top: 15px;
    box-shadow: 3px 6px 15px -6px #685efd;
    transition: 250ms;
  }
}

@media screen and (max-width: 1200px) {
  form {
    margin: 10px 0;
    background-color: white;
    padding: 10px 40px;
    border-radius: 35px;
    -webkit-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    -moz-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
    /* -webkit-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
    -moz-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
    box-shadow: 0px 0px 57px -37px rgb(253, 187, 94), 1; */
  }

  /* Centalizar ao meio */
  .form-wrapper {
    /* width: 100vw;
  height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Create two equal columns that floats next to each other */
  .column {
    /* float: left; */
    /* width: 100%; */
    padding: 40px;
    /* height: 300px; */
    /* padding: auto;
    height: auto; */
    /* Should be removed. Only for demonstration */
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  div .photo-info .logo {
    width: 40px;
    display: block;
    margin: 0 auto;
    border-radius: 30%;
    align-items: center;
    -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    -webkit-border-radius: 30%;
    -moz-border-radius: 30%;
    -ms-border-radius: 30%;
    -o-border-radius: 30%;
  }

  div .photo-info .jawa {
    width: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 30%;
    align-items: center;
    -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  }

  .photo-info h5 {
    font-size: 11px;
    text-align: center;
  }

  .photo-info h4 {
    display: block;
    font-size: 10px;
    text-align: center;
    padding-bottom: 10px;
    font-style: italic;
    font-weight: 300;
    color: #616161;
  }

  .photo-info h3 {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    font-weight: 300;
    color: #616161;
  }

  form .input-block {
    margin-bottom: 10px;
  }

  .input-block.username input {
    background-image: url(img/person.png);
    background-repeat: no-repeat;
    background-position: left;
    background-position-x: 0px;
    background-origin: content-box;
    background-size: 20px;
    text-indent: 25px;
  }

  .input-block.password input {
    background-image: url(img/03-input-icon.png);
    background-repeat: no-repeat;
    background-position: left;
    background-position-x: 0px;
    background-origin: content-box;
    background-size: 20px;
    text-indent: 25px;
  }

  form .input-block input {
    width: 250px;
    height: 30px;
    display: block;
    margin-top: 8px;
    padding: auto;
    font-size: 14px;
    color: #685efd;
    border-radius: 5px;
    border: 1px solid #dddddd;
    outline: #685efd;
    transition: 250ms;
  }

  form .input-block input:hover {
    border: 1px solid #685efd;
  }

  form .danger {
    border: 1px solid #f84747;
    padding: 5px;
    border-radius: 5px;
    background-color: #fd5e5ea8;
    color: #ba0101;
    text-align: center;
    display: none;
  }

  .alur {
    width: 350px;
  }

  form .btn-login {
    display: block;
    min-width: 80px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background-color: #685efd;
    color: white;
    border-radius: 35px;
    margin: auto;
    width: 200px;
    height: 35px;
    margin-top: 15px;
    box-shadow: 3px 6px 15px -6px #685efd;
    transition: 250ms;
  }
}

/* form {
  margin: 20px 0;
  background-color: white;
  padding: 20px 100px;
  border-radius: 35px;
  -webkit-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
  -moz-box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
  box-shadow: 0px 0px 57px -37px rgba(104, 94, 253, 1);
  /* -webkit-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
  -moz-box-shadow: 0px 0px 57px -37px rgb(253, 187, 94, 1);
  box-shadow: 0px 0px 57px -37px rgb(253, 187, 94), 1; 
}*/

/* Centalizar ao meio */
/* .form-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

/* div .photo-info .logo {
  width: 70px;
  display: block;
  margin: 0 auto;
  border-radius: 30%;
  align-items: center;
  -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);

}

div .photo-info .jawa {
  width: 270px;
  display: block;
  margin: 0 auto;
  border-radius: 30%;
  align-items: center;
  -webkit-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 56px -33px rgba(0, 0, 0, 0.75);

}

.photo-info h5 {
  text-align: center;
}

.photo-info h4 {
  display: block;
  font-size: 12px;
  text-align: center;
  padding-bottom: 10px;
  font-style: italic;
  font-weight: 300;
  color: #616161;
}

.photo-info h3 {
  display: block;
  font-size: 23px;
  margin-top: 20px;
  text-align: center;
  font-weight: 300;
  color: #616161;
} */

form {
  background: url(img/01-bg-form.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* form .input-block {
  margin-bottom: 15px;
} */

/* tidak digunakan */
/* .input-block input {
  padding-left: 30px;
} */
/* tidak digunakan */

/* .input-block.username input {
  background-image: url(img/person.png);
  background-repeat: no-repeat;
  background-position: left;
  background-position-x: 0px;
  background-origin: content-box;
  background-size: 20px;
  text-indent: 35px;
}

.input-block.password input {
  background-image: url(img/03-input-icon.png);
  background-repeat: no-repeat;
  background-position: left;
  background-position-x: 0px;
  background-origin: content-box;
  background-size: 20px;
  text-indent: 35px;
}

form .input-block input {
  width: 350PX;
  height: 40PX;
  display: block;
  margin-top: 8px;
  padding: auto;
  font-size: 14px;
  color: #685efd;
  border-radius: 5px;
  border: 1px solid #dddddd;
  outline: #685efd;
  transition: 250ms;
}

form .input-block input:hover {
  border: 1px solid #685efd;
}

form .danger {
  border: 1px solid #f84747;
  padding: 5px;
  border-radius: 5px;
  background-color: #fd5e5ea8;
  color: #ba0101;
  text-align: center;
  display: none;
} */

::placeholder {
  color: #c8c6c6;
}

/* form .btn-login {
  display: block;
  min-width: 120px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background-color: #685efd;
  color: white;
  border-radius: 35px;
  margin: auto;
  width: 200px;
  height: 35px;
  margin-top: 15px;
  box-shadow: 3px 6px 15px -6px #685efd;
  transition: 250ms;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
} */

form .btn-login:hover {
  filter: brightness(80%);
}

form p .span {
  color: #685efd;
  text-decoration: none;
}

/* tambahan */
form .span {
  color: #685efd;
  text-decoration: none;
}

/* end tambahan */

form p .span:hover {
  transition: 200ms;
  filter: brightness(70%);
}

form p {
  font-size: 15px;
  text-align: center;
  padding-top: 5px;
}

/*=== APARIÇÃO DO FORM ===*/
form {
  overflow: hidden;
  animation: fade 0.2s;
}

form .input-block:nth-child(2) {
  animation: move 500ms;
}

form .input-block:nth-child(3) {
  animation: move 400ms;
  animation-delay: 150ms;
  animation-fill-mode: backwards;
}

form .btn-login {
  animation: move 400ms;
  animation-delay: 250ms;
  animation-fill-mode: backwards;
  cursor: pointer;
}

@keyframes move {
  from {
    opacity: 0;
    transform: translate(-35%);
  }

  to {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Quando clicar no botão, sumir com o form */
.form-hide {
  animation: down 500ms;
  animation-fill-mode: 1.2s forwards;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes down {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100vh);
  }
}

/*=== FORM NO-NO ===*/
form.validate-error {
  animation: nono 200ms linear, fade paused;
  animation-iteration-count: 2;
}

@keyframes nono {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-15%);
  }

  70% {
    transform: translateX(15%);
  }
}

/*=== SQUARES ===*/
body {
  overflow: hidden;
}

.squares li {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  position: absolute;
  bottom: -40px;
  animation: up 2s infinite, alternate;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(-800px) rotate(960deg);
  }
}
