body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #393939 0%, #000000 100%);
}

.login-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

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

.logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.logo-text .material-symbols-outlined {
  font-size: 2rem;
}

.logo-text .brand-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

h2 {
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.login-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

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

.microsoft {
  background-color: #0078d4;
  color: white;
}

.microsoft:hover {
  background-color: #106ebe;
}

.google {
  background-color: #4285f4;
  color: white;
}

.google:hover {
  background-color: #357ae8;
}

.divider {
  margin: 25px 0;
  color: #999;
  font-size: 14px;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}
