/* Style the checkbox */
.checkbox_input {
    display: inline-block;
    background-color: white; /* Default background color */
    transition: background-color 0.3s ease;
}

.checkbox_input:checked {
    background-color: white; /* Custom background color when selected */
    border-color: rgb(188, 187, 187); /* Match border color */
}

/* Add a cross sign (✖) inside the checked checkbox */
.checkbox_input:checked::after {
    content: "✖"; /* Cross sign */
    font-size: 18px; /* Size of the cross */
    color: black; /* Text color */
    position: absolute;
    top: -3px; /* Position the cross inside the checkbox */
    left: 4px; /* Position the cross inside the checkbox */
}


.affiliate-login-text{
    text-align: justify;
    color: whitesmoke;
    padding: 107px 0px 0px 108px;
    position:absolute;
    top: 1%;
    max-width: 80%;
    font-size: 15px;
  }