@font-face {
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'PlayfairDisplay-Regular';
  src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
}

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

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: 'Poppins-Regular';
}

/* PAGE BACKGROUND */
.nr-verify-wrap {
  min-height: 100vh;
  width: 100%;
  background: url("../images/tt.jpeg") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
}

/* VERIFICATION CARD */
.nr-verify-box {
  background: #ffffff;
  width: 100%;
  max-width: 40rem;
  padding: 4vh 4vw;
  text-align: center;
  border-radius: 0.5rem;
}

/* LOGO */
.nr-verify-logo {
  width: 18rem;
  margin-bottom: 1rem;
}

/* QUESTION TEXT */
.nr-verify-question {
  color: #565671;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 3vh;
}

/* BUTTON AREA */
.nr-verify-actions {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vh;
}

.nr-btn {
  flex: 1;
  padding: 1em 0;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  border-radius: 0.3rem;
  text-align: center;
}

.nr-btn-allow {
  background: #7dbb82;
}

.nr-btn-deny {
  background: #9a9a9a;
}

/* FOOTER */
.nr-site-footer {
  width: 100%;
  text-align: center;
  padding: 2vh 2vw;
  background: #000;
  font-size: 1.2rem;
}

.nr-site-footer a {
  color: #fff;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .nr-verify-wrap {
    padding: 5vh 0;
  }

  .nr-verify-box {
    padding: 2.5vh 4.5vw;
  }

  .nr-verify-actions {
    gap: 1.5vh;
  }
}
