* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  /* background-color: #f5f5f5; */
}

a:hover {
  text-decoration: none;
}
/*login card css*/
.login-card {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 1px 1px 9px #9a9a9a;
  display: flex;
}
.sign-up-card {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 1px 1px 9px #9a9a9a;
  display: flex;
}
.sign-up-card .right-section {
  width: 450px;
  padding: 1rem 1.5rem;
  background: #fff;
  border-top: 3px solid;
}
.login-card .left-section {
  width: 300px;
}
.login-card .right-section {
  width: 450px;
  padding: 1rem 1.5rem;
  background: #fff;
}
.login-card .left-section {
  background-image: url(../img/register-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.login-card .left-section-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.login-card h2,
.sign-up-card h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.login-card p,
.sign-up-card p {
  text-align: center;
  margin-bottom: 1rem;
}
.form-input-label {
  margin-bottom: 1.5rem;
}
.form-input-label label {
  width: 100%;
  margin-bottom: 0;
  line-height: 1;
  font-size: 0.8rem;
  color: #424242;
  font-weight: 500;
}
.form-input-label input {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 38px;
  background: 0 0;
  padding: 0 7px 0 36px;
  border: 0;
  border-bottom: 1px solid #d5d5d5;
  font-weight: 500;
}
.form-input-label input::placeholder {
  font-size: 14px;
  color: #ababab;
  line-height: 1.2;
  font-weight: 300;
}
.form-input-label input:focus {
  outline: 0;
}
.form-input-label .form-input {
  position: relative;
}
.form-input-label .form-input i {
  position: absolute;
  top: 10px;
  left: 7px;
  color: #5f5f5f;
}
.forgot-password-text a {
  color: #424242;
  font-size: 0.8rem;
}
.forgot-password-text a:hover {
  text-decoration: underline;
}
.submit-button {
  border: 0;
  margin: 1rem 0;
  background: transparent;
}
.submit-button a {
  width: 200px;
  padding: 0.5rem 1rem;
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  border: 2px solid #fff;
}
.submit-button a:hover {
  color: #df4658;
  background: #fff;
  font-weight: 400;
  border: 2px solid #df4658;
}
.login-module-bottom-section {
  margin: 1rem 0;
  text-align: center;
}
.login-module-bottom-section span {
  /* display: block; */
  color: #424242;
  font-size: 0.8rem;
}
.login-module-bottom-section span a {
  color: #424242;
  font-size: 0.8rem;
}
.login-module-bottom-section span a:hover {
  text-decoration: underline;
}

/*radio button css*/
.form-input-label .radio-label {
  position: relative;
  padding-left: 30px;
  line-height: normal;
  margin-bottom: 0.5rem;
  width: 80px;
}
.form-input-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: auto;
  width: 50px;
  height: 100%;
}
.form-input-label .radio-label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 50%;
  cursor: pointer;
}
.form-input-label .radio-label input:checked ~ .checkmark {
  background-color: #df4658;
}
.form-input-label .radio-label .checkmark:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  display: none;
}
.form-input-label .radio-label input:checked ~ .checkmark:after {
  display: block;
}
/*payment confirmation page*/
.payment-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.payment-heading h5 {
  font-weight: 800;
  font-size: 1.5rem;
  color: #495057;
}
.payment-amount {
  font-size: 1.2rem;
  /* margin-right: 1rem; */
  padding: 0.25rem;
}
.payment-amount .title {
  font-weight: 500;
}
.payment-amount .value {
  font-weight: 700;
  color: #e91e63;
}
.payment-items-card {
  box-shadow: 0px 0px 8px #b5b5b5;
  background: #fff;
  padding: 1rem 0 0 0;
  border-top: 3px solid #495057;
}
.payment-items-card h4 {
  margin-bottom: 0;
  padding: 0 1rem 1rem;
  font-size: 1.25rem;
  color: #495057;
  font-weight: 600;
}
.payment-items-card ul {
  margin-bottom: 0;
}
.payment-items-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  /* border-bottom: 1px solid #c1c1c1; */
}
.payment-items-card ul li h5 {
  margin-bottom: 0;
  color: #495057;
  font-size: 1.1rem;
}
.payment-items-card ul li .amount {
  color: #ca3869;
  font-weight: 500;
}
.payment-items-card .total-amount-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.discount-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
}
.discount-row .total-amount {
  color: #4c71b3;
}
.discount-row .title {
  color: #576dac;
}

.amount-breakup-section {
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border-top: 1px solid #c1c1c1;
}
.payment-items-card .total-amount-row .total-amount {
  color: #e91e63;
  font-weight: bold;
}
.payment-items-card .total-amount-row .title {
  font-weight: bold;
  color: #495057;
}
.coupon-code-div {
  margin-bottom: 1rem;
}
.coupon-code-div input {
  padding: 4px 4px;
  font-size: 0.875rem;
  color: #556ead;
  font-weight: 500;
  background: #f5f5f5;
  border: 1px solid #d5d5d5;
  height: 36px;
}
.coupon-code-div button {
  padding: 4px 8px;
  height: 36px;
  background: #576ead;
  border: 0;
  color: #fff;
  font-size: 0.875rem;
}
.pay-now-row {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .pay-now-row {
    justify-content: center;
  }
  .coupon-code-div {
    width: 100%;
  }
}
/*payment summary page*/
.payment-success-section {
  margin-bottom: 2rem;
}
.payment-success-section span {
  width: 70px;
  height: 70px;
  background: #e91e63;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}
.payment-success-section span i {
  font-size: 3rem;
  color: #fff;
}
.payment-success-section h4 {
  text-align: center;
  font-size: 2rem;
  color: #495057;
}
.payment-success-section p {
  text-align: center;
  font-size: 0.875rem;
  width: 70%;
  margin: auto;
}
.payment-summary-table {
  width: 100%;
}
.payment-summary-table table {
  width: 100%;
}
.payment-summary-table table tr {
  width: 100%;
}
.payment-summary-table table tr td,
.payment-summary-table table tr th {
  padding: 0.25rem 0.5rem;
  border: 1px solid #495057;
}
.payment-summary-table table tr th {
  background: blueviolet;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}
.payment-summary-table table tr td {
  color: #495057;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.payment-summary-card {
  box-shadow: 0 0 10px #d5d5d5;
  background: #fff;
}
.payment-summary-card .payment-summary-head {
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.payment-summary-card .payment-summary-head .payment-summary-order {
  font-size: 1rem;
  font-weight: 600;
}
.payment-summary-card .payment-summary-head .payment-summary-order .title {
  color: #495057;
}
.payment-summary-card .payment-summary-head .payment-summary-order .info {
  color: #e91e63;
}
.payment-summary-card .payment-summary-head .payment-summary-date {
  font-size: 0.875rem;
  font-weight: 500;
}
.payment-summary-card .payment-summary-detail {
  padding: 0.25rem 1rem;
  display: flex;
  justify-content: space-between;
}
.payment-summary-card .payment-summary-detail h3 {
  font-size: 1.2rem;
}
.payment-summary-card .payment-summary-detail .amount {
  font-size: 1rem;
  color: #e91e63;
  font-weight: 500;
}
.payment-summary-card .discount-detail {
  padding: 0.25rem 1rem;
  display: flex;
  justify-content: space-between;
}
.payment-summary-card .discount-detail h3 {
  font-size: 1.2rem;
}
.payment-summary-card .discount-detail .amount {
  font-size: 1rem;
  color: #576ead;
  font-weight: 500;
}
.payment-summary-card .paid-amt-detail {
  padding: 0.25rem 1rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d5d5d5;
}
.payment-summary-card .paid-amt-detail h3 {
  font-size: 1.2rem;
}
.payment-summary-card .paid-amt-detail .amount {
  font-size: 1rem;
  color: #e91e63;
  font-weight: 500;
}

@media (max-width: 767px) {
  .payment-heading h5 {
    width: 100%;
    text-align: center;
  }
  .payment-amount {
    width: 100%;
    text-align: center;
  }
  .payment-items-card ul li .amount {
    min-width: 100px;
    text-align: right;
  }
  .payment-summary-card .payment-summary-detail .amount {
    min-width: 100px;
    text-align: right;
  }
  .payment-summary-card .payment-summary-head {
    padding: 0.5rem;
  }
  .payment-summary-card .payment-summary-detail {
    padding: 1rem 0.5rem;
  }
  .payment-items-card ul li h5 {
    font-size: 1rem;
  }
  .payment-summary-card .payment-summary-detail h3 {
    font-size: 1rem;
  }
}
