/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #007bff;
  border-radius: 2px;
}

.button-container {
  text-align: center;
  margin-bottom: 60px;
}

.auth-button {
  display: inline-block;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 50px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.data-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease;
}

pre {
  font-family: "Courier New", monospace;
  font-size: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 36px;
  }

  .auth-button {
    font-size: 20px;
    padding: 16px 32px;
  }
}
