.home-container {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.welcome-title {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.username {
  color: #3773ff;
}

.subtitle {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.button.primary {
  background-color: #3773ff;
  color: white;
}

.button.primary:hover {
  background-color: #AFDAFF;
}

.button.secondary {
  background-color: #e2e8f0;
  color: #2d3748;
}

.button.secondary:hover {
  background-color: #cbd5e0;
}
