﻿.custom-checkbox {
    display: none;
}


.custom-checkbox + label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

.custom-checkbox + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #999999;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
    background-color: white;
}

.custom-checkbox:checked + label:before {
    background-color: #0564F5;
    border-color: #0564F5;
}

.custom-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
}
.form-check{
    padding-bottom: 10px;
    font-size: 15px;
    color: #666666;
}
.img-key-image{
    text-align: center;
    display: flex;
    justify-content: center;
}
#key-icon-1{
    width: 65%;
}

.swal-button {
    padding: 7px 19px;
    border-radius: 2px;
    background-color: #4962B3;
    font-size: 12px;
    border: 1px solid #0564F5;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}