/* Body styles */
body {
  margin: 0;
  padding: 0;
  background-color: #060708;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

/* Container styling */
.container {
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

/* Header styling */
h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: fadeIn 2s ease-in-out;
}

/* Paragraph styling */
p {
  color: #d0d0d0;
  font-size: 1.2em;
  margin-bottom: 40px;
  animation: fadeIn 3s ease-in-out;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 4s ease-in-out;
}

/* Base button styling for both Login and Signup */
.button {
  color: #fff;
  background-color: #10121429; /* Blackish background for both */
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1em;
  border: 1px solid #ffffff0f;
  border-radius: 100px;
  transition: all 0.5s ease;
}

.button:hover {
  background-color: #580000; /* Darker color on hover for both */
  transform: translateY(-5px);
}

/* Horizontal line styling */
hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #d0d0d0;
  margin: 30px 0;
  animation: fadeIn 3.5s ease-in-out;
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Wave animation */
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Wave container and wave styling */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.wave {
  position: relative;
  width: 200%;
  height: 100%;
  background: url("../img/wave.svg") repeat-x;
  background-size: 50% 100px;
  animation: wave 10s linear infinite;
}

/* Link styles */
a {
  color: #fff;
}

a:visited {
  color: white;
}
