* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #fafafa;
}

/* public/css/app.css */
.accordion {
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.panel {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.container {
  display: flex;
  justify-content: space-evenly;
  margin: 1rem 2rem;
  height: auto;
}
.box-1 {
  width: 50%;
  margin: 0 5rem;
}
.box-1 h1 {
  color: #0c6c0d;
  font-weight: 800;
}
.box-1 p {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 15px;
  color: black;
  text-align: justify;
}
hr {
  margin: 2rem 0;
}
.box-1-footer {
  display: flex;
  justify-content: center;
  line-height: 15px;
  margin-top: 30px;
}
.box-1-footer img {
  /* height: 3rem; */
  width: 5rem;
  padding-right: 12px;
}
.box-1-footer-content h2 {
  font-size: 12px;
}
.box-1-footer-content p {
  font-size: 12px;
}

.box-2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 50%;
  box-shadow: 0 3px 20px rgb(0 0 0 / 0.2);
  border-radius: 10px;
  padding: 2rem 1rem;
  background: #ffffff;
}
.box-2 h1 {
  font-weight: 700;
  font-size: 2rem;
}
.box-2 h2 {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.box-2 .form-input {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.box-2 .form-input input {
  border: 1px solid #c4c4c4;
  margin: 5px 0;
  height: 1.5rem;
  padding: 13px 5px;
}
.box-2-payment {
  display: flex;
  flex-direction: column;
  border: 1px solid #cde794;
  height: 40%;
  background: #fafafa;
  height: 100%;
  padding: 0.5rem 0.5rem;
}
.currency {
  text-align: left;
  width: 40%;
}
.currency select {
  background: #f2f2f2;
  width: 25%;
  height: 100%;
  border: 1px solid #d1d1d1;
}
.currency input {
  width: 75%;
  color: #fff;
  background: #53a854;
  padding: 1px 5px;
  height: 100%;
  border: 1px solid #d1d1d1;
}
.select-book {
  height: 2rem;
  font-size: 13px;
  border: 1px solid #d1d1d1;
  margin: .5rem 0;
  padding-left: 10px;
}

button {
  height: 4rem;
  color: #fff;
  background: #419af9;
  font-weight: 700;
  border: 0;
  border-radius: 5px;
  letter-spacing: 5px;
  font-size: 16px;
  cursor: pointer;
}
.footer-text {
  text-align: center;
  font-weight: 400;
  font-size: 10px;
  margin: 10px 4rem 4rem;
}

@media screen and (max-width: 720px) {
  .container {
    flex-direction: column;
    margin: 1rem 0rem;
  }
  .box-1 {
    width: 90%;
    margin: 0 2rem;
  }
  .box-2 {
    width: 90%;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 2rem;
  }
  .box-1-footer {
    text-align: center;
  }
  .box-1 h1 {
    text-align: center;
  }
}
