 .box-hover{

    }

    .box-hover:hover{
        background: #172C48;
    }

    .answer{
        width:45%;
        position: relative;
        float: left;
        margin: 10px;
        padding-top: 45px;
        padding-bottom: 45px;
        cursor: pointer;
    }

    .text-orange{
        color: #FF7A00;
        background: #FFF4E6;
    }


/* Base checkbox reset */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

/* Hover effect */
input[type="checkbox"]:hover {
  border-color: #007bff;
}

/* Checked state */
input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Checkmark */
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Focus outline for accessibility */
input[type="checkbox"]:focus {
  outline: 2px solid #80bdff;
  outline-offset: 2px;
}


.forgot-link{
    color:#6B00F5; 
    background: transparent;
}

.forgot-link:hover{
    /*text-decoration: underline 2px;*/
}