body {
  font-family: sans-serif;
  margin: 0;
  padding: 2rem;
  color: #1f2937;
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.logincontainer {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #374151;
}

h3 {
  font-size: 1.25rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.topinfo {
  margin: 1rem 0;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topinfo p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.topinfo .login-status {
  color: #15803d;
  font-weight: bold;
}
.topinfo .provisioned {
  font-weight: bold;
  margin-bottom: 1rem;
}
.topinfo .provisioned span, .topinfo .provisioned .highlight-current {
  text-decoration: underline;
  font-weight: normal;
  background-color: #dbeafe;
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
}

.info {
  margin: 1rem 0;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.info .login-status {
  color: #15803d;
  font-weight: bold;
}
.info .provisioned {
  font-weight: bold;
  margin-bottom: 1rem;
}
.info .provisioned span, .info .provisioned .highlight-current {
  text-decoration: underline;
  font-weight: normal;
  background-color: #dbeafe;
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 0.25rem;
  color: #374151;
  font-weight: 600;
}

input,
input[type=text],
input[type=password],
input[type=email] {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  margin-bottom: 1rem;
  font-size: 1rem;
}
input.readonly-field,
input[type=text].readonly-field,
input[type=password].readonly-field,
input[type=email].readonly-field {
  background: #f3f4f6;
  color: #6b7280;
}

.checkbox {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.checkbox input {
  margin-right: 0.5rem;
}

.btn, .btn-submit {
  background: #1e3a8a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
@media (max-width: 420px) {
  .btn, .btn-submit {
    display: block;
    font-size: 14px;
  }
}

.btn:hover, .btn-submit:hover {
  background: #1e40af;
}

.btn-submit.secondary {
  background: #2563eb;
}
.btn-submit.secondary:hover {
  background: #1e40af;
}

.alert {
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.alert.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
}
.alert.alert-success {
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  color: #0f5132;
}

/*# sourceMappingURL=style.css.map */
