/* Base */
html { height: 100%; }
body {
  height: 100%;
  background: rgb(148,38,120);
  /*background: linear-gradient(180deg, rgba(195,31,100,1) 0%, rgba(107,45,139,1) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;*/
}

/* Top Banners */
.top-banner-stage {
  font-size: 14px;
  background: #0000ff;
  width:100%;
  height: 20px;
  text-align: center;
  color: #ffffff;
}
.top-banner-dev {
  font-size: 14px;
  background: #ffe800;
  width:100%;
  height: 20px;
  text-align: center;
  color: #000000;
}

/* Top Logo Area */
.top-logo-area {
  width: 300px;
  display: block;
  margin: auto;
  padding: 25px;
}

/* Buttons */
.btn-primary {
  color: #ffffff;
  background-color: #6b2d8b;
  border-color: #6c757d;
  border-radius: 2rem;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: #491f5e;
  border-color: #6c757d;
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #877492;
  border: 1px solid #877492;
}
.btn-secondary {
  color: #ffffff;
  background-color: #6A567D;
}
.btn-secondary:hover {
  background-color: #6b2d8b;
}

/* Forms */
.form-control {
  background-color: #f3eef6;
}
.form-control:hover,
.form-control:active,
.form-control:focus-visible {
  background-color: #f1ebf5;
  border-color: #9f9f9f;
}

/* Text */
h1 {
  color: #af2674;
}

/* Footer */
footer {
  color: #dee2e6;
}

/* Dark mode */
@media (prefers-color-scheme: dark){

  body{
    height: 100%;
    background: rgb(54, 21, 70);
    /*background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(72, 30, 93) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;*/
  }

  /* Buttons */
  .btn-primary {
    color: #ffffff;
    background-color: #3a184b;
    border-color: #6c757d;
    border-radius: 2rem;
  }
  .btn-primary:hover,
  .btn-primary:active,
  .btn-primary:focus-visible {
    background-color: #210d2a;
    border-color: #6c757d;
  }
  .btn-primary.disabled,
  .btn-primary:disabled {
    background-color: #877492;
    border: 1px solid #877492;
  }
  .btn-secondary {
    color: #dee2e6;
    background-color: #301d3a;
  }
  .btn-secondary:hover {
    background-color: #24182a;
  }

  /* Cards */
  .card {
    color: #dee2e6; 
    background-color: #212529;
    border-color: rgb(66,69,73);
  }

  /* Forms */
  .form-control {
    background-color: #444444;
    border-color: #6c757d;
    color: #dee2e6;
  }
  .form-control:hover,
  .form-control:active,
  .form-control:focus-visible {
    background-color: #555555;
    border-color: #6c757d;
    color: #ffffff;
  }
  input, textarea {
    color: #dee2e6;
    caret-color: #ffffff;
  }

  /* Text */
  h1 {
    color: #dee2e6;
  }

}

