.chc-logo {
  width: 96px;
  height: 46px;
  border: none;
  float: left;
}

.logo-divider {
  width: 1px;
  height: 26px;
  border-right: 1px solid #fff;
  display: inline-block;
  margin-top:10px;
  float: left;
}

.app-name {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  padding-left: 12px;
  margin-top: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  float: left;
}

.help-button {
  display: none;
  float: right;
  margin-top: 6px;
  margin-bottom: 0;
}

@media only screen and (min-width: 23.0rem) {
  .help-button {
    display: inline-block;
  }
}

.container .form-container {
  width: 100%;
  max-width: 31rem; /*(496px)*/
  margin: 0 auto;
  box-sizing: border-box;
}

.container .content .form-container {
  margin-bottom: 5rem;
  min-height: 43rem;
}

/*sm = > 40.0rem (640px) - for tablets*/
@media only screen and (min-width: 40.0rem) {
  .container .content .form-container {
    padding: 0 2rem 1rem;
    border: 2px solid #ccc;
    border-top: none;
  }
}

.form-container .row button,
.dialog-container .row button {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.form-container .row button.last-xs,
.dialog-container .row button.last-xs {
  margin-right: 0rem;
}

.form-description h1 {
  margin-bottom: 0;
}

.form-description p {
  color: #9ba1a9;
  margin-top: 0;
}

.form-container abbr[title] {
  border: none;
  text-decoration: none;
  position: relative;
  top: -2px;
  right: -2px;
}

p.rules {
  margin-top: 0;
}

.math-problem-box {
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	align-items: baseline;
}

.math-problem-box p {
	flex-grow: 1;
	text-align: center;
}

.math-problem-box div {
	flex-grow: 3;
}

.math-problem-label:after {
	color: #d84040;
    content: '*';
    position: relative;
    top: -2px;
    left: -2px;
}

.custom-list {
    list-style-type: none; /* Remove default bullet */
}

.custom-list li {
    padding-left: 20px; /* Space for the image */
    background-image: url('/VAADIN/themes/chc-dark/images/bullet.png'); /* Set background image */
    background-repeat: no-repeat; /* Don't repeat the image */
    background-position: 0 50%; /* Position the image */
    background-size: 16px 16px; /* Adjust image size */
    margin-bottom: 10px; /* Optional: Add some margin between items */
}

#passwordStrength {
    margin-top: 10px;
    padding: 0;
}

#passwordStrength li {
    margin-bottom: 5px;
    font-size: 15px;
}

.indicator {
    display: inline-block;
    position: relative;
}

.light {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: none;
}

.right .light[src*='green_light'] {
    display: inline-block;
}

.wrong .light[src*='red_light'] {
    display: inline-block;
}

.right {
    color: green;
}

.wrong {
    color: red;
}