
input[type="text"]
{
    margin: 10px;
    width: 80%;
    border: 1px solid rgb(201, 201, 201);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    outline: none;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
input[type="file"]
{
    margin: 10px;
    width: 80%;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
input[type="text"]:focus
{
    outline: none;
    border: 1px solid rgb(0, 162, 255);
    box-shadow: 0 0 2px rgb(0, 162, 255);
    transition: 0.2s;
}
textarea
{
    margin: 10px;
    width: 80%;
    height: 100px;
    resize: none;
    border: 1px solid rgb(201, 201, 201);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    outline: none;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
textarea:focus
{
    outline: none;
    border: 1px solid rgb(0, 162, 255);
    box-shadow: 0 0 2px rgb(0, 162, 255);
    transition: 0.2s;
}
.main
{
    display: flex;
    justify-content: space-around;
    margin: 200px auto;
    
}
.feedback_main
{
    display: block;
    justify-content: space-around;
    margin: 200px auto;
    
}
.contacts,
.feedback
{
    margin-bottom: 140px;
}
.feedback_title,
.contacts_title
{
    display: grid;
    margin: 180px auto 0px 0px;
    width: fit-content;
    font-size: 30px;
    font-weight: 600;
}
.contacts_contacts
{
    display: block;
    align-content: center;
    font-size: 20px;
    margin-top: 40px;
}
.contacts_phone,
.contacts_email,
.contacts_telegram
{
    display: flex;
    margin: 30px auto;
    font-weight: 500;
}
.phone_icon,
.email_icon,
.telegram_icon
{
    width: 30px;
    margin-right: 10px;
}
.phone_icon_image,
.email_icon_image,
.telegram_icon_image
{
    width: 100%;
}
.telegram_link
{
    text-decoration: none;
    color: black;
    font-weight: 500;
}
.feedback
{
    width: 40%;
}
.feedback_form
{
    display: inline-grid;
    width: 100%;
    margin-top: 40px;
}
#feedback_file_title
{
    margin: 10px 0px 0px 10px;
    font-weight: 500;
}
#feedback_file_error
{
    margin: 0px 0px 10px 10px;
    color: rgb(0, 162, 255);
}
.feedback_submit_button
{
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 200px;
    padding: 10px;
    margin: 10px;
    font-size: 20px;
    background-color: rgb(0, 162, 255);
    color: white;
}

.feedback_result
{
    width: fit-content;
    margin: 70px auto;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.feedback_return_buttons_area
{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 10px auto;
}
.return_to_index_button
{
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 200px;
    height: 75px;
    padding: 10px;
    font-size: 20px;
    background-color: rgb(0, 162, 255);
    color: white;
}
.return_to_contacts_button
{
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 200px;
    height: 75px;
    padding: 10px;
    font-size: 20px;
    background-color: rgb(0, 162, 255);
    color: white;
}
.feedback_result_image_area
{
    width: calc(6 * 4vw);
    height: calc(6 * 3vw);
    margin: 200px auto 0px auto;
}
.feedback_result_image
{
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 768px) 
{
    .main
    {
        display: block;
    }
    .feedback
    {
        width: 100%;
    }
    .contacts_title 
    {
        margin: 120px auto 0px 10px;
    }
    .feedback_title
    {
        margin: 20px auto 0px 10px;
    }
    .contacts, .feedback 
    {
        margin-bottom: 0px;
    }
    .contacts_contacts
    {
        margin-top: 10px;
        margin-left: 10px;
    }
    .feedback_form
    {
            margin-top: 10px;
    }
    .feedback_result_image_area
    {
        width: calc(15 * 4vw);
        height: calc(15 * 3vw);
        margin: 200px auto 0px auto;
    }
}