/* extracted from login.html */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.login-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 48px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-splash {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f7fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.logo-splash img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px;
}

.login-subtitle {
  font-size: 16px;
  color: #718096;
  margin: 0 0 32px;
}

.login-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #2d3748;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  transform: translateY(0);
}

.google-btn:hover {
  border-color: #4285F4;
  background: #f8faff;
}

.microsoft-btn:hover {
  border-color: #00a4ef;
  background: #f8faff;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.login-footer {
  font-size: 12px;
  color: #a0aec0;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .login-container {
    padding: 32px 24px;
  }
  
  .login-title {
    font-size: 24px;
  }
  
  .login-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
