.expired-link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 40px 20px;
}

.expired-link-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.expired-icon {
  margin-bottom: 20px;
}

.expired-icon svg {
  width: 80px;
  height: 80px;
}

.expired-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin: 0 0 16px 0;
  text-align: center;
}

.expired-message {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 32px 0;
  text-align: center;
}

.expired-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.expired-link-container .resend-link-btn {
    padding: 9px 18px;
}

.expired-link-container a {
    min-width: 350px;
}

@media (max-width: 768px) {
  .expired-link-container {
    padding: 40px 0;
  }

  .expired-title {
    font-size: 24px;
  }

  .expired-message {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .expired-actions {
    gap: 12px;
  }

  .expired-actions .button {
    width: 100%;
    min-width: unset;
  }

  .expired-icon svg {
    width: 60px;
    height: 60px;
  }

  .expired-link-container a {
    min-width: unset;
    width: 100%;
  }
}

