body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4ff;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.login-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.branding {
  text-align: center;
  margin-bottom: 25px;
}

.branding img {
  width: 180px;
  height: auto;
  margin-bottom: -25px;
}

.branding h1 {
  font-size: 24px;
  margin: 8px 0 4px;
  color: #0046c5;
}

.branding p {
  font-size: 14px;
  color: #777;
}

.login-container {
  background-color: #fff;
  padding: 35px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-container h2 {
  color: #0046c5;
  margin-bottom: 25px;
}

.login-container input[type="email"],
.login-container input[type="password"] {
  width: 93%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.login-btn {
  width: 100%;
  background-color: #0046c5;
  color: white;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-btn:hover {
  background-color: #0032a0;
}

.signup-link {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

.signup-link a {
  color: #0046c5;
  text-decoration: none;
  font-weight: 600;
}
