body {
  background: linear-gradient(135deg, #006D82 0%, #17a2b8 100%);
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(10px);
}

.welcome-title {
  font-size: 3rem;
  color: #006D82;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-subtitle {
  font-size: 1.2rem;
  color: #575756;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.login-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #006D82, #17a2b8);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 109, 130, 0.3);
  border: none;
  cursor: pointer;
}

.login-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 109, 130, 0.4);
  background: linear-gradient(45deg, #17a2b8, #006D82);
}

.login-button:active {
  transform: translateY(-1px);
}

.features-list {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.features-list li {
  color: #575756;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.features-list li::before {
  content: "✨";
  margin-right: 0.5rem;
  color: #9B8CC2;
}

@media (max-width: 768px) {
  .welcome-container {
    padding: 2rem 1.5rem;
  }

  .welcome-title {
    font-size: 2.5rem;
  }

  .welcome-subtitle {
    font-size: 1.1rem;
  }
}
