/* Azure AD-style login page */
.azure-login {
  background-color: #f2f2f2;
  font-family: "Segoe UI", sans-serif;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-box {
  background: white;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.logo {
  width: 108px;
  margin-bottom: 20px;
}

.login-box h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

.login-box input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #999;
  border-radius: 2px;
  font-size: 16px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background-color: #0078d4;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 2px;
  cursor: pointer;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.footer-links a {
  color: #0078d4;
  text-decoration: none;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  display: flex;
  gap: 15px;
}
