* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fbfbfb;
}

.nav {
  background: #003adb;
  padding: 5px 0px;
  display: flex;
  justify-content: center;
}

.nav img {
  width: 190px;
}

.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container .left {
  max-width: 600px;
  margin: 0 50px;
  /* background: pink; */
  flex: 1;
  justify-content: center;
  align-items: center;
}

.container .left .title {
  font-size: 3rem;
  font-family: "Poppins", serif;
  font-weight: 500;
  /* max-width: 600px; */
  line-height: 1;
  margin-bottom: 40px;
  color: #0c3ac6;
}

@media (max-width: 1200px) {
  .container .left .title {
    font-size: 2.3rem;
  }
}

.container .left .form {
  display: flex;
  flex: 1;
  column-gap: 30px;
  /* max-width: 600px; */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  /* background: purple; */
}

.container .left .form .content-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
  /* background-color: green; */
  /* align-items: center; */
}

.container .left .form .content-form p {
  text-align: center;
  font-family: "Poppins", serif;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #003adb;
}

.container .left .form div {
  flex: 1;
  display: flex;
  column-gap: 5px;
}

.container .left .form input {
  border: 1px solid #d4d5d5;
  background: #f0f5f9;
  height: 35px;
  padding: 0 5px;
  border-radius: 8px;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  color: #003adb;
  font-family: "Poppins", serif;
  font-weight: 300;
  width: 100%;
}

.container .left .form button {
  cursor: pointer;
  background: #003adb;
  border-radius: 8px;
  border: 0;
  height: 35px;
  padding: 0 10px;
  color: #fff;
  font-family: "Poppins", serif;
  transition: ease all 0.4s;
}

.container .left .form button:hover {
  background: #082a88;
}

.container .left .form .without-coupom {
  cursor: pointer;
  color: #082a88;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  border: 0;
  height: 35px;
  padding: 0 10px;
  font-family: "Poppins", serif;
  transition: ease all 0.4s;
  width: 100%;
}

.container .left .form button:hover {
  background: #082a88;
  color: #fff;
}

.container .left .form .result {
  display: flex;
  flex: 1;
  padding: 20px;
  font-family: "Poppins", serif;
  background: #ffe100;
  font-size: 0.9rem;
  border-radius: 5px;
  border: 1px solid #d4d5d5;
  min-width: 300px;
  margin-top: 20px;
  min-height: 100px;
  font-weight: 300;
}

.container .left .form .coupon {
  display: flex;
  flex: 1;
  padding: 20px;
  font-family: "Poppins", serif;
  /* background: #ffe100; */
  font-size: 0.9rem;
  border-radius: 5px;
  border: 1px solid #d4d5d5;
  min-width: 300px;
  margin-top: 20px;
  min-height: 100px;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  color: rgba(8, 42, 136, 0.5);
}

.container .container-img img {
  max-width: 540px;
  margin: 0 50px;
}

@media (max-width: 1200px) {
  .container .container-img img {
    display: none;
    /* max-width: 440px; */
  }
}

.result {
  display: none;
  color: #000;
  background-color: #ffe6e6;
  padding: 10px;
  border: 1px solid #ededed;
  border-radius: 5px;
  margin-top: 10px;
}
