.callback_contacts_page {
    min-width: 300px;
}

.callback_contacts_page .name__holder {
    font-size: calc(0.005 * 100vw + 14.4px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    color: var(--title);
    margin-bottom: 20px;
}

.callback_contacts_page .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.callback_contacts_page .form input {
    width: 100%;
    margin: 0 auto;
    padding: 13px 10px;
    border: 1px solid var(--main);
    background: transparent;
    border-radius: 5px;
    font-size: calc(0.00125 * 100vw + 11.6px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    color: var(--text);
}

.callback_contacts_page .form textarea {
    width: 100%;
    height: 120px;
    margin: 0 auto;
    padding: 13px 10px;
    border: 1px solid var(--main);
    background: transparent;
    border-radius: 5px;
    font-size: calc(0.00125 * 100vw + 11.6px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    color: var(--text);
    resize: none;
}

.callback_contacts_page .form label {
    padding: 0 8px;
}

.callback_contacts_page .form input:focus,
.callback_contacts_page .form textarea:focus {
    outline: none;
}

.callback_contacts_page .form .btn {
    width: 100%;
}