@import url('https://v1.fontapi.ir/css/SFProDisplay');
@import url('https://fonts.cdnfonts.com/css/inter');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  outline: none;
  font-family: 'SF Pro Display', sans-serif;
}

html{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
  background: #fFF;
  height: 100%;
}

svg{
  display: block;
}

.wrapper{
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  flex-grow: 1;
}

.link-content{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #eaeaeb;
  border-top: 1px solid #eaeaeb;
  margin: 0 0 25px;
}

.header__text{
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: #000000;
}

.header__btn{
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__btn span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 29px;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  border-radius: 32px;
  background: #007aff;
}

.content{
  border-radius: 40px;
  box-shadow: 0 2px 20px 0 rgba(23, 23, 23, 0.12);
  background: #fff;
  padding: 26px 18px;
  margin: 0 4px 25px;
  text-align: center;
}

.title{
  font-weight: 700;
  font-size: 28px;
  line-height: 121%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
}

.subtitle{
  font-weight: 500;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
}

.content__text{
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.content__i{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.warning{
  display: flex;
 text-align: left;
  gap: 9px;
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
  padding-right: 35px;
}

.link{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 16px;
  background: #007aff;
  font-weight: 500;
  font-size: 17px;
  line-height: 124%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.footer{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  background: #f4f5f7;
  padding: 15px;
}

.footer-link__el{
  position: relative;
  font-weight: 400;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #0a84ff;
}

.footer-link__el:not(:last-child):before{
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background: #888;
  top: 50%;
  right: -7px;
  transform: translate(0 , -50%);
}

.footer__text{
  font-weight: 400;
  font-size: 12px;
  color: #666;
}

.footer-link{
  display: flex;
  gap: 10px;
}