
.login-container {
  max-width: 400px;
  margin: 40px auto;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-container h2 {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.auth-button {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.w3-input {
  margin-bottom: 16px;
}

.extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
}

.extras a {
  color: #00457C;
  text-decoration: none;
}

.extras a:hover {
  text-decoration: underline;
}

.submit-button {
  background-color: var(--bodybackgroundcolor);
  color: var(--maintextcolor);
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
}

.submit-button:hover {
  opacity: 0.9;
}        
