/* CONTAINER */
.wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f8fc;
  font-family: "Inter", sans-serif !important;
  flex-direction: column;
}

.wrapper .login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.title {
  color: #10a3c5;
  font-size: 38px;
  margin-bottom: 32px;
  font-weight: 600;
}

.card {
  max-width: 1100px;
  /* margin: 0 auto; */
  background: #fff;
  border: 1px solid #cde5ea;
  border-radius: 10px;
  display: flex;
  padding: 32px;
}

.section {
  flex: 1;
  text-align: left;
  padding: 0 20px;
}

/* h3 inside section */
.section h3 {
  color: #444;
  font-size: 26px;
  margin-bottom: 20px;
}

/* ul inside section */
.section ul {
  margin: 16px 0;
  padding-left: 18px;
  margin-top: 40px;
}

/* li inside section */
.section ul li {
  font-size: 18px;
  color: #374151;
  margin-bottom: 32px;
  letter-spacing: 0.8px;
  line-height: 32px;
}

.price {
  font-size: 36px;
  font-weight: 600;
  color: #10a3c5;
}

.divider {
  width: 0.5px;
  background: #e0e0e0;
  margin-left: 40px;
  margin-right: 40px;
}

.outlineBtn {
  border: 1px solid #10a3c5;
  background: transparent;
  color: #10a3c5;
  padding: 16px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
}

.primaryBtn {
  background: #10a3c5;
  color: #fff;
  border: none;
  padding: 16px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
}

@media (max-width: 600px) {
  /* Wrapper spacing */
  .wrapper {
    padding: 20px 12px;
  }

  .wrapper .login-container {
    margin-top: 40px;
  }

  /* Title */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Card → stack vertically */
  .card {
    flex-direction: column;
    padding: 20px;
    width: 100%;
    gap: 40px;
  }

  /* Section spacing */
  .section {
    padding: 0;
  }

  /* Divider → hide */
  .divider {
    display: none;
  }

  /* Headings */
  .section h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  /* Price */
  .price {
    font-size: 28px;
  }

  /* List spacing */
  .section ul {
    margin-top: 20px;
    padding-left: 16px;
  }

  .section ul li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  /* Buttons full width */
  .outlineBtn,
  .primaryBtn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    margin-top: 10px;
  }
}
