.clean_form_block * {
    box-sizing: border-box;
}

.overlay_clean {
    background: rgba(33, 37, 41, 0.9);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clean_form {
    width: 100%;
    max-width: 400px;
    background: rgb(33 37 41);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.title_clean_form {
    font-size: 24px;
    color: #ecf0f1;
    margin-bottom: 10px;
    text-align: center;
}

.description_clean_form {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 20px;
    text-align: center;
}

.input_name_clean_form {
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.f_input_clean_form {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid 1px solid var(--border-color);
    background: var(--bg-primary);
    color: #ecf0f1;
    border-radius: 5px;
}

.f_input_clean_form:focus {
    outline: none;
    border-color: #3498db;
}

.politik {
    font-size: 12px;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.politik a {
    text-decoration: none;
}

.politik a:hover {
    text-decoration: underline;
}

.fbutton_clean_form {
    width: 100%;
    padding: 10px;
    background: var(--button-bg);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.fbutton_clean_form:hover {
    background: #39af3f;
}

.close_clean_form {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ecf0f1;
    cursor: pointer;
}