.login-container {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN";
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-container h1 {
  font-size: 45px;
  color: #20ff20;
  opacity: 0.7;
  margin-bottom: 30px;
}

.logo {
  width: 200px;
  margin-bottom: 100px;
}

.fab {
  margin-right: 5px;
}

.login-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid white;
}

.login-link:hover {
  background-color: #545454;
}

/* Added for compact hero */
.hero-compact .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-compact .hero-logo {
  width: 80px; /* Adjust size as needed */
  height: 80px;
  margin-bottom: 20px;
  border-radius: 15px; /* Rounded corners */
}

.hero-compact .app-title {
  font-size: 2.5rem; /* Adjust size as needed */
  margin-bottom: 10px;
}

.hero-compact .app-tagline {
  font-size: 1.1rem; /* Adjust size as needed */
  margin-bottom: 20px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .hero-compact .app-title {
    font-size: 2rem !important;
  }

  .hero-compact .app-tagline {
    font-size: 1rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .feature-item h3 {
    font-size: 1.1rem !important;
  }

  .feature-item p {
    font-size: 0.9rem !important;
  }

  footer p {
    font-size: 0.8rem !important;
  }
}
