chatgpt ile yaptıgımız toplantılar sonucunda alttaki kodları css dosyama ekledim ve sorun çözüldü. biraz yorduk chatgpt efendiyi..

.remember-forgot label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #fff;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    outline: none;
    position: relative;
    cursor: pointer;
}

.remember-forgot label input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 2px;
}