* {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  min-height: 100vh;

  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b {
  font-weight: 500;
}

#root {
  position: absolute;
}

.main {
  width: 510px;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main__header {
  background-color: #25D366;
  height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.main__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.whatsapp-logo {
  display: block;
  width: 100px;
}

.phone-number {
  padding: 10px 0;
  background-color: #F8F4E4;
  color: #484848;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

.XTlBTQWc {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #fff;
    border-radius: 4px;
    padding: 9px 20px;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    text-decoration: none;
    }

.qr-code {
  width: 200px;
  height: 200px;

  position: relative;
  margin: auto;
}

.qr-code img {

    border: #c6c6c6 1px solid;
    border-radius: 15px;
    background: white;
    padding: 15px;
}

.reload-button {
  width: 200px;
  height: 200px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 100px;
  background-color: #25D366;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: background-color .05s ease-out;
}

.reload-button:hover {
  background-color: #20b558;
}

.reload-button__icon {
  display: block;
  background-image: url('/assets/icons/refresh.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  transition: transform 0.5s ease;
}


@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.reload-button:focus .reload-button__icon {
  animation: rotateAnimation 1s infinite ease-in-out;
}


.reload-button__text {
  width: 170px;
  margin-top: 16px;
  color: white;
  text-align: center;
  font-size: 16px;
  line-height: 120%;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.instruction {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

._5pzSyfC2 img {
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    border: #c6c6c6 1px solid;
    }

.instruction__item {
  font-size: 16px;
  line-height: 24px;
  color: #7d7d7d;
}

.first-sign {
  display: inline-block;
  background-image: url('/assets/img/q1.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.second-sign {
  display: inline-block;
  background-image: url('/assets/img/q2.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
}

.logo {
  width: 110px;
  margin: auto;
}

.api-error {
  background-color: #ffe5e0;
  padding: 13px 40px 14px 10px;
  font-size: 16px;
  color: #ee6953;
  text-align: center;
  border-radius: 3px;
}

.success-message {
  background-color: #25D366;
  padding: 13px 40px 14px 10px;
  font-size: 16px;
  color: white;
  text-align: center;
  border-radius: 3px;
}
