/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered container */
.container {
  text-align: center;
}

/* Title styling */
h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
}

/* Microsoft-style button */
.ms-signin-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #0078D7;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.ms-signin-button:hover {
  background-color: #1f1f1f !important;
}

.ms-logo {
  width: 24px;
  height: 24px;
}