@import url("https://fonts.googleapis.com/css2?family=Muli:wght@300;400;500;600;700;800&display=swap");

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

body {
  font-family: "Muli", sans-serif;
}

.heading {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #ed1c24;
}

.heading img {
  width: 160px;
}

.verification_card {
  background: #ffffff;
  box-shadow: 0px -10px 187px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 1.5rem 4rem;
  width: 40%;
  max-width: 600px;
  margin: 3rem auto;
}

.verification_card .top {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.verification_card .top span {
  margin: 0.5rem 0;
}

.verification_card .top span:nth-child(1) {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
}

.verification_card .top span:nth-child(2) {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 500;
}

.verification_card .top img {
  width: 6rem;
  margin: 1rem auto 2rem;
}

.details .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.details .item span:nth-child(1) {
  color: rgba(52, 64, 84, 0.74);
  font-size: 0.9rem;
}

.details .item span:nth-child(2) {
  color: #000;
  font-size: 0.9rem;
}

.details .item:nth-child(4) span:nth-child(2) {
  color: #fff;
  padding: 0.2rem 0.4rem;
  border: 1px solid #53b175;
  background-color: #53b175;
  border-radius: 8px;
  font-size: 0.8rem;
}

.btn_area {
  display: flex;
  justify-content: center;
}

.verification_card button {
  width: 95%;
  height: 35px;
  margin: 3.5rem auto 0.5rem;
  border: none;
  background: #ed1c24;
  border-radius: 5px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .verification_card {
    width: 45%;
  }
}

@media (max-width: 1060px) {
  .verification_card {
    width: 50%;
  }
}

@media (max-width: 976px) {
  .verification_card {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .verification_card {
    width: 95%;
    padding: 2.4rem 1.5rem;
    line-height: 2;
  }

  .verification_card .top img {
    margin: 2.5rem auto;
  }
}

@media (max-width: 350px) {
  .heading img {
    width: 120px;
  }
}

@media (max-width: 290px) {
  .verification_card {
    padding: 2.4rem 0.5rem;
  }

  .verification_card .top span:nth-child(2),
  .details .item span:nth-child(1),
  .details .item span:nth-child(2),
  .verification_card button {
    font-size: 0.8rem !important;
  }
}
