* {
  font-family: "Poppins", sans-serif;

  color: #ffffff;
  box-sizing: border-box;
  border: 0;
  padding: 0;
}

body {
  background-color: #201e1f;
}

.form-container {
  flex: 1;
  display: flex;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  height: 100vh;
}

.input-container {
  display: flex;
  flex-direction: column;
  column-gap: 150px;
  width: 80%;
  margin: auto;
}

.logo-wrapper {
  margin-bottom: 50px;
}

.input-text-container {
  margin-bottom: 30px;
}

.input-heading-text {
  font-weight: 500;
}
.input-details-text {
  opacity: 0.7;
  font-size: 14px;
  margin-top: -10px;
}

.input {
  width: 100%;
  padding: 10px 16px;
  background-color: #4d4b4c;
  margin-bottom: 30px;
  outline: 0;
  border: 1px solid #615f60;
  border-radius: 10px;
}

.input::placeholder {
  color: #fff;
  opacity: 0.7;
}

.action-section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.check-container {
  display: flex;
  align-items: center;
}

.check-text {
  margin-left: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.action-text {
  opacity: 0.8;
  font-size: 14px;
  text-decoration: none;
}

.submit-btn {
  background-color: #4e4e8f;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.alternate-cta {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.7;
}

.alternate-link {
  opacity: 1;
  font-size: 14px;
  text-decoration: none;
  margin-left: 10px;
}

.info-container {
  display: flex;
  align-items: center;
}

.info-text {
  margin-left: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.image {
  object-fit: cover;
  width: 60vw;
  position: fixed;
  filter: brightness(0.5);
}

.star-icon-wrapper {
  display: flex;
  justify-content: end;
}

.star-icon {
  font-size: 30px;
  color: orange;
}

.description-container {
  background-color: transparent;
  margin-top: 70px;
  padding: 20px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.description-text {
  background-color: transparent;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  height: 40px;
}

.description-sub-text {
  text-align: center;
  background-color: transparent;
}

/* For tablets */
@media (max-width: 1024px) {
  .form-wrapper {
    width: 100%;
  }

  .input-container {
    width: 60%;
  }

  .image-container {
    display: none;
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .input-container {
    width: 95%;
  }
}
