﻿.section-before {
    position: relative
}

.author-widget-wrap {
    padding: 50px 30px 30px;
    text-align: center;
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin : 15px 0 15px 0
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7c3aed;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}

.checkbox-container label {
    font-size: 14px;
}

.checkbox-container a {
    font-size: 14px;
    text-decoration: none;
    color: #007bff;
}

    .checkbox-container a:hover {
        text-decoration: underline;
    }


input[type=checkbox] ~ label:before {
    content: "";
    font-family: var(--icon-font);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 4px;
    background-color: var(--white-color);
    border: 1px solid rgb(176 198 205);
    border-radius: 3px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}
.uzat {
    width: 100%;
}
.form-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 12px;
    border-radius: 8px;
    background-color: #fff;
}
@media (max-width:767px){
    .mbl-mlr {
        margin: 0 5px 0 5px;
    }
    .form-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-select {
        font-size: 16px;
    }
}
.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.dropdown-selected {
    padding: 10px 40px 10px 26px;
    background-color: #f9f6ef;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    height: 48px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 400;
}

    .dropdown-selected::after {
        content: "";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8L10 12L14 8' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
    }

.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #f9f6ef;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    list-style: none;
    padding: 4px 0;
    margin-top: 6px;
}

    .dropdown-list li {
        padding: 12px 16px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 500;
        color: #2c2c2c;
        letter-spacing: 0.5px;
    }

        .dropdown-list li:hover {
            background-color: #ece6d9;
        }

    .dropdown-list.show {
        display: block;
    }
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .loading-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}