/* Login Page Styles */
body, h1, p {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
}

.logo {
  width: 200px;
}

.header {
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.2rem;
  color: #666;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  text-decoration: none;
  color: white;
}

.card {
  width: 18rem;
}

.header {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.subheader {
  color: #666;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 30px;
  font-size: 1em;
  color: #fff;
  background-color: #0052cc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #003d99;
  text-decoration: none;
  color: white;
}

.features {
  display: flex;
  margin-top: 40px;
}

.feature {
  margin: 0 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 200px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  font-size: 0.9em;
  color: #555;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}
