@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

body {
    font-family: "Zain", serif;

}

a {
    text-decoration: none;
}

.sec-btn, .btn-main-color {
    background: #131d3d;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    padding: 11px 24px 0px 24px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.btn-danger-color {
    background: #bc3226;
    border: 1px solid #bc3226;
}

.sec-btn i {
    padding-right: 10px;
}


input, select, textarea {
    display: block;
    width: 100%;
    border-style: none !important;
    /* background: #ecfdf3; */
    border: 1px solid #0000002d !important;
    margin-bottom: 20px;
    border-radius: 13px;
    outline: none;
    padding: 10px 20px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: #131d3d0a;
}


.btn-action {
    font-size: 20px;
    padding: 10px;
    color: var(--bs-indigo);
    cursor: pointer;
}

.btn-action .fa-trash-alt {
    color: var(--bs-red);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    user-select: none;
}

.custom-checkbox input {
    display: none; /* إخفاء مربع الاختيار الافتراضي */
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    background: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-checkbox .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox input:checked + .checkmark::after {
    opacity: 1;
}


.btn-register {
    padding: 20px;
    display: block;
    font-size: 22px;
}

.btns-login {
    background: aliceblue;
    display: table;
    margin: auto;
    padding: 14px 7px;
    border-radius: 38px;
    font-weight: 500;
}

.btns-login a {
    padding: 10px 20px;
    border-radius: 33px;
    letter-spacing: 1px;
    font-size: 18px;
}

.btns-login .active{
    background: var(--bs-blue);
    color: #fff;
}
