body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vap-light-gray);
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

#logo {
  width: 80px;
  max-width: 80px;
  border-radius: 10px;
  margin-bottom: 24px;
}

#title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

#directions {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
  max-width: 320px;
}

#login-form {
  width: 100%;
  max-width: 320px;
}

#login-submit {
  width: 100%;
  max-width: 320px;
  height: 50px;
  background-color: var(--vap-blue);
  border: none;
  border-radius: 10px;
  color: var(--vap-white);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  /* Flexbox for centering text in anchor tags */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

#login-submit:hover {
  opacity: 0.9;
}

#password-reset-link {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-column {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--vap-light-gray);
  padding: 20px;
  box-sizing: border-box;
}

.login-container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--vap-white);
  padding: 48px 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

.login-credentials-container {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#or {
  width: 60px;
  height: 30px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

#sso-link {
  width: 100%;
  max-width: 320px;
  height: 50px;
  background-color: var(--vap-blue);
  border: none;
  border-radius: 10px;
  color: var(--vap-white);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: bold;
  cursor: pointer;
}

#sso-link:hover {
  opacity: 0.9;
}

#sso-password-reset-link {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error styling */
.error {
  color: rgb(200, 60, 60);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* Error/unavailable page styling */
.error-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  background-color: var(--vap-white);
  border-radius: 20px;
  box-sizing: border-box;
}

.error-icon {
  font-size: 64px;
  color: rgb(200, 60, 60);
  margin-bottom: 20px;
}

.error-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--vap-blue);
  margin-bottom: 16px;
}

.error-message {
  font-size: 16px;
  color: rgb(71, 78, 86);
  line-height: 1.6;
  margin-bottom: 30px;
}

.back-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--vap-blue);
  color: var(--vap-white);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
}

.back-link:hover {
  opacity: 0.9;
}

/* Responsive adjustments for smaller desktop viewports */
@media (max-width: 600px) {
  .login-container,
  .error-container {
    padding: 32px 24px;
    border-radius: 16px;
  }

  #logo {
    width: 64px;
    max-width: 64px;
  }

  #title {
    font-size: 20px;
  }

  #directions {
    font-size: 14px;
  }
}

/* Copyright footer */
#visual-action-copyright {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #666;
  cursor: pointer;
}