
/* COMMON */
body {
  display: flex; flex-direction: column; min-height: 100vh; 
}
body.anonymous .logout {
  display: none;
}

main {
  flex: 1;
}
.form-control-password-show {
  top: 40px;
  right: 6px;
}
form span.action-status.progress {
  color: #4285f4;
}
form span.action-status.failure {
  color: red;
}
form span.action-status.success {
  color: green;
}

/* SETUP */
body#setup .setup-flow li {
  display: none;
}
body#setup .setup-flow li.active {
  display: block;
}
body#setup .setup-flow li.active {
  display: block;
}
body#setup .step {
  display: none;
}
body#setup .active {
  display: block;
}

/* PASSWORD REQUIREMENTS */
.check-icon::before {
  content: '\2713'; /* Unicode character for checkmark */
  font-weight: 700;
  color: green;
  margin-right: 5px;
}

/* SPINNER */
#overlay {
    visibility: hidden; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

