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

body {
  margin: 0;
  box-sizing: content-box;
  font-family: "Montserrat", sans-serif;
}

/* ===== TOKEN VERIFICATION COMPONENT STYLES ===== */

/* Loading state container */
.loading-container {
  text-align: center;
  padding: 50px;
}

/* Main page container - centers everything on screen */
.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Logo container */
.logo-container {
  width: 100%;
}

/* Responsive logo - mobile first (40px height on mobile) */
.responsive-logo {
  height: 35px;
  width: auto;
  margin: 30px 16px;
  object-fit: contain;
  display: block;
}

.content-container {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

/* Text content wrapper - constrains width and centers */
.text-content-wrapper {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

/* Heading styles for verification messages */
.verification-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1b70b2;
  margin: 10px auto;
}

/* Body text styles */
.verification-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  color: #8d8d8d;
}

/* ===== RESPONSIVE IMAGES ===== */

/* Responsive verification image - mobile first */
.success-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.error-image {
  width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===== DESKTOP RESPONSIVE STYLES ===== */
@media (min-width: 768px) {
  .responsive-logo {
    height: 50px;
    width: auto;
    margin: 40px 20px;
  }

  .success-image {
    width: 80%;
    max-width: 800px;
    object-fit: contain;
    margin: 0 auto;
  }

  .error-image {
    max-width: 500px;
    object-fit: contain;
    margin: 0 auto;
  }

  /* Text content wrapper - constrains width and centers */
  .text-content-wrapper {
    max-width: 350px;
  }

  .verification-heading {
    font-size: 36px;
    margin: 20px auto;
  }

  .verification-text {
    font-size: 16px;
  }

  .content-container {
    gap: 20px;
  }
}

/* ===== BUTTON STYLES ===== */

.link-button {
  display: inline-block;
  width: 81px;
  height: 14px;
  padding: 10px 14px;
  background-color: #1b70b2;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 11.05px;
  line-height: 100%;
  text-align: center;
  border-radius: 6px;
}

.link-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(27, 112, 178, 0.3);
}

.link-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(27, 112, 178, 0.3);
}

@media (min-width: 768px) {
  .link-button {
    width: 50%;
    max-width: 300px;
    height: 25px;
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 8px;
    margin: 0 auto 10px auto;
  }
}
