html, body {
  height: 100vh;
  overflow-y: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.error-container {
  background: transparent;
  padding: 0 24px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.errormessage {
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

.headerTemplate {
  z-index: 1000 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 56px !important;
  width: 100% !important;
}

.content-with-header {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 56px);
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.login-button {
  background-color: white;
  color: #0063B1;
  border: 2px solid #0063B1;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: none;
  display: inline-block;
}
.login-button:hover {
  background-color: #f0f0f0;
}