@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

html {
  font-size: 16px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  overflow-x: hidden;
  overflow-y: hidden;
}
.back{
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.03;
}

.recaptcha-section {
  display: flex;
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 10;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.main {
  position: relative;
  width: auto;
  height: auto;
  padding-left: 5vh;
}

.verizon {
  display: block;
  height: auto;
  gap: 0px;
  margin-bottom: 4vh;
  line-height: 1.5;
}

.verizon-link {
  text-decoration: none;
  color: #1e1e1e;
  font-size: 36px !important;
  font-weight: 500;
  transition: color 0.2s;
}
.verizon-link:hover {
  color: #f48120;
  text-decoration: none;
}
.verizon-link-footer{
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 500;
}
.verizon-link-footer:hover {
  color: #f48120;
}

.captcha {
  position: relative;
  display: none;
  align-items: center;
  width: 330px;
  height: 74px;
  background: #ffffff;
  border: 1px solid #d0d5db;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  margin-bottom: 7vh;
  transform-origin: left top;
  justify-content: space-between;
}
.captcha:hover {
  border-color: #f48120;
}

.check-wrapper{
  position: relative;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
}
.check-text-wrapper{
  display: flex;
  align-items: center;
  gap: 14px;
}
.captcha-check {
  position: absolute;
  display: none;
  height: 28px;
  width: 28px;
  background: #ffffff;
  border: 2px solid #5f6a7a;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.2s, border-radius 0.3s, transform 0.3s;
  transform-origin: center;
}
.captcha-check:hover {
  border-color: #f48120;
}
.captcha-check.scale-zero {
  transform: scale(0);
}

.text {
  position: relative;
  font-size: 16px;
  font-weight: 450;
  user-select: none;
  color: #2c3e50;
  letter-spacing: -0.01em;
}
.logo-wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
  place-items: center;
  gap: 4px;
  padding: 0 18px;
}
.logo-img {
  width: 80px;
}

.link {
  font-size: 10px;
  color: #5b6879;
}
.link a {
  text-decoration: none;
  color: #5b6879;
  font-weight: 450;
  transition: color 0.15s;
}
.Privacy:hover, .Terms:hover {
  color: #f48120;
}

.main-line {
  width: 70vh;
  height: 1px;
  background: #e5e9f0;
  margin-bottom: 12px;
}

.main-footer {
  justify-items: center;
  position: absolute;
  background-color: transparent;
  display: grid;
  justify-items: center;
  align-self: end;
  width: 100%;
  height: 12vh;
  font-size: 1.6vh;
  margin-top: 0vh;
  color: #5b6879;
  gap: 6px;
}

.footer-link {
  text-decoration: none;
  color: #f48120;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-link:hover {
  color: #d86c10;
}

.main-loader{
  position: relative;
  width: 44px;
  margin-bottom: 50px;
  opacity: 0.7;
}

.circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateCircle 3.8s linear infinite;
  opacity: 0;
}
@keyframes rotateCircle {
  from {
    transform: rotate(0deg) scale(0.13);
  }
  to {
    transform: rotate(360deg) scale(0.13);
  }
}

.dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #028127;
  border-radius: 50%;
}
.dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(2) { top: 14%; left: 86%; transform: translateX(-50%); }
.dot:nth-child(3) { top: 50%; left: 100%; transform: translateY(-50%) translateX(-50%); }
.dot:nth-child(4) { top: 86%; left: 86%; transform: translateX(-50%) translateY(-50%); }
.dot:nth-child(5) { top: 100%; left: 50%; transform: translateX(-50%) translateY(-50%); }
.dot:nth-child(6) { top: 86%; left: 14%; transform: translateX(-50%) translateY(-50%); }
.dot:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%) translateX(-50%); }
.dot:nth-child(8) { top: 14%; left: 14%; transform: translateX(-50%) translateY(-50%); }

.modal-section {
  display: none;
  width: 100vw;
  height: 100vh;
  place-content: center;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
}

.modal-block {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 38vh;
  height: auto;
  border: 1px solid #e7ecf2;
  border-radius: 16px;
  padding-top: 0.8vh;
  opacity: 0;
  background-color: #ffffff;
  transform: translateY(-12vh);
  transition: opacity 0.4s ease;
  z-index: 30;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  pointer-events: auto;
  margin: 0 auto;
}

.side-loader{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -7vh;
  top: 10vh;
  width: 7vh;
  height: 7vh;
  border: 1px solid #e0e4ea;
  background: white;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 0;
  border-radius: 8px 0 0 8px;
}
.data{
  position: absolute;
  width: 4.5vh;
  height: 4.5vh;
  z-index: 1000;
}

.block-wrapper{
  display: grid;
  flex-direction: column;
  align-content: center;
  background: #ffffff;
  z-index: 100;
}

.header {
  background: #f48120;
  width: 95%;
  height: 10vh;
  color: #ffffff;
  justify-self: center;
  align-content: center;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  margin-top: 1.2vh;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  justify-self: center;
  gap: 0.3vh;
}

.complete {
  font-size: 1.5vh;
  letter-spacing: -0.01vh;
  opacity: 0.9;
  font-weight: 400;
}

.verification {
  font-size: 2.2vh;
  letter-spacing: -0.02vh;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}

.not-robot {
  font-size: 1.5vh;
  letter-spacing: -0.01vh;
  opacity: 0.95;
}

.text-method-0 {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-self: center;
  gap: 1.8vh;
  padding-top: 2.5vh;
  padding-bottom: 4vh;
  font-size: 1.5vh;
  height: auto;
  z-index: 100;
  color: #2c3e50;
  line-height: 1.6;
}
.text-method-0 ol{
  display: grid;
  gap: 1.8vh;
  padding-left: 2vh;
  width: 100%;
}
.key-icon {
  background: #f0f2f5;
  padding: 0.2vh 0.8vh;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Space Grotesk', monospace;
  border: 1px solid #d0d5db;
  font-size: 1.4vh;
}

.text-method-1 {
  width: 85%;
  display: none;
  flex-direction: column;
  justify-self: center;
  gap: 1.8vh;
  padding-top: 2.5vh;
  padding-bottom: 4vh;
  font-size: 1.5vh;
  height: auto;
  z-index: 100;
  color: #2c3e50;
  line-height: 1.6;
}
.text-method-1 ol{
  display: grid;
  gap: 1.8vh;
  padding-left: 2vh;
  width: 100%;
}
.text-method-1 li b {
  color: #f48120;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f9fafc;
  border-top: 1px solid #e5e9f0;
  width: 100%;
  height: 7vh;
  align-self: end;
  border-radius: 0 0 16px 16px;
  position: relative;
}

.icons{
  display: flex;
  background-color: transparent;
  justify-self: left;
  align-self: center;
  align-items: center;
  gap: 0.5vh;
  margin-left: 1vh;
}
.icons img {
  width: 2.6vh;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s, transform 0.1s;
}
.icons img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 28vh;
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 1vh;
  border-radius: 8px;
  font-size: 1.4vh;
  position: absolute;
  z-index: 10000;
  bottom: 150%;
  left: 50%;
  margin-left: -14vh;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.verify-button {
  display: grid;
  justify-self: end;
  align-self: center;
  place-items: center;
  width: 15vh;
  height: 5.4vh;
  background: #f48120;
  border-radius: 40px;
  color: #fff;
  font-size: 2.2vh;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -0.05vh;
  transform: scale(0.7);
  cursor: pointer;
  user-select: none;
  transition: all 0.18s ease-in-out;
  box-shadow: 0 8px 16px -6px rgba(244,129,32,0.3);
  margin-right: 0.5vh;
}
.verify-button:hover {
  transform: scale(0.73);
  background: #f85e00;
  color: #ffffff;
}