input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 4px;
    margin-bottom: 20px;
}

.overlay2 {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    content: "";
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.center-msg {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: #fff;
    box-sizing: border-box;
    padding: 30px 30px 20px 30px;
    border-radius: 7px;
    text-align: center;
    font-weight: 600;
    color: #343434;
}

.center-msg img {
    width: 80px;
    margin-bottom: 0.5rem;
}


/* Style the submit button */
input[type=submit] {
    background-color: #04AA6D;
    color: white;
}

#message {
    display: none;
    background: #fff;
    color: #000;
    position: relative;
    padding: 5px;
    margin-top: 0px;
    text-align: left;
}

#message h3 {
    text-align: justify;
    margin: 0 0 5px;
    font-size: 11px;
    font-weight: 400;
    color: #888686;
}

#message p {
    padding: 2px 5px;
    font-size: 11px;
    text-align: left;
    margin-bottom: 0px;
}

#message1 {
    display: none;
    background: #fff;
    color: #000;
    position: relative;
    padding: 5px;
    margin-top: 0px;
    text-align: left;
}

#message1 h3 {
    text-align: justify;
    margin: 0 0 5px;
    font-size: 11px;
    font-weight: 400;
    color: #888686;
}

#message1 p {
    padding: 2px 5px;
    font-size: 11px;
    text-align: left;
    margin-bottom: 0px;
}

.valid {
    color: green;
}

.valid:before {
    position: relative;
    left: -2px;
    content: "✔";
}

.invalid {
    color: red;
}

.invalid:before {
    position: relative;
    left: -2px;
    content: "✖";
}
.learning-mode .form-check {
    float: none !important;
    display: block;
    margin-bottom: .5rem;
}
.learning-mode .form-check-input {
    margin-right: .4rem;
}
.learning-mode h5 {
    margin-bottom: .75rem;
    font-weight: 500;
}
.login-26 .form-info .learning-mode {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
}.learning-mode .mode-options {
  display: flex;
  gap: 20px;
  justify-content: center;
}.learning-mode input[type="radio"] {
  display: none;
}.learning-mode .mode-card {
  cursor: pointer;
  padding: 20px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-weight: 500;
  gap: 5px;
  transition: all 0.3s ease;
  justify-content: center;
  box-shadow: 0 3px 8px rgb(0 0 0 / 3%);
  text-align: center;
  min-width: 170px;
}.learning-mode .mode-card .icon {
  font-size: 1.4rem;
  display: block;
  border-radius: 50px;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  line-height: 38px;
  margin: 0px auto;
  margin-bottom: 10px;
}.learning-mode input[type="radio"]:checked + .mode-card {
  border-color: #4B6DFF
;
  background: #FFFFFF
;
  color: #0D6EFD
;
  box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
}