/***
Login Page
***/
body {
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

.device-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-autodesk-blue);
  margin-bottom: 30px;
}

.auth-wrapper {
  display: flex;
  flex: 1; /* takes all the vertical space available until the footer */
  width: 100%;
  align-items: center;
}

.auth-wrapper .tagline {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 72px;
  text-align: center;
}

.auth-column {
  flex: 1;
}

.adsk-logo img {
  width: 200px;
  padding: 10px;
}

.center-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.secure-btn {
  color: white;
  background-color: var(--color-primary-autodesk-blue);
  font-family: var(--font-default);
  max-width: 296px;
  width: 100%;
  text-align: center;
  padding: 8px;
  border-radius: 2px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .left-panel,
  .right-panel {
    display: none;
  }

  .center-panel {
    flex: 1 1 100%;  /* Center fill the full width */
  }
}

#adsk-sign-in {
  width: 297px;
}

#qr-code-sign-in {
  cursor: pointer;
  margin-left: 5px;
  text-decoration: underline;
}

.alert {
  line-height: 30px;
  margin-bottom: 0;
}
