.form__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}

.form-box {
  max-width: 300px;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  overflow: hidden;
  border-radius: 10px;
  color: #010101;
}

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px;
  gap: 16px;
  text-align: center;
}

/*Form text*/
.title {
  font-weight: bold;
  font-size: 1.6rem;
}

.subtitle {
  font-size: 1rem;
  color: #666;
}

/*Inputs box*/
.form-container {
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  margin: 1rem 0 0.5rem;
  width: 100%;
}

.input {
  background: none;
  border: 0;
  outline: 0;
  height: 40px;
  width: 100%;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  padding: 8px 15px;
}

.form-section {
  padding: 16px;
  font-size: 0.85rem;
  background-color: #e0ecfb;
  box-shadow: rgb(0 0 0 / 8%) 0 -1px;
}

.form-section a {
  font-weight: bold;
  color: #0066ff;
  transition: color 0.3s ease;
}

.form-section a:hover {
  color: #005ce6;
  text-decoration: underline;
}

/*Button*/
/* .form button {
  background-color: #414141;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .3s ease;
} */

.form button:hover {
  background-color: #005ce6;
}

/* animasi */
@keyframes slide-in {
  from {
    /* opacity: 0; */
    transform: translateY(-100%);
  }

  to {
    /* opacity: 1; */
    transform: translateY(0%);
  }
}

@keyframes opacity-in {
  from {
    opacity: 0;
    /* transform: translateY(-100%); */
  }

  to {
    opacity: 1;
    /* transform: translateY(0%); */
  }
}

/* ...and then apply it: */
.animation__slide {
  animation: slide-in 1000ms;
}

.animation__opacity__login {
  animation: opacity-in 1000ms;
}

@media (max-width: 767px) {
  .form__container {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    /* height: 100vh; */
    position: relative;
  }
}
