﻿:root{
    --text:#555;
    --label:#7a7a7a;
    --link:#000;
    --border:#d9d9d9;
    --input-bg:#fff;
    --btn-bg:#f2f2f2;
    --btn-border:#bfbfbf;
  }
  
  *{ box-sizing: border-box; }
  
  .feedback_form_container{
    width:1030px;
    margin:0 auto;
    margin-top: 100px;
  }
  
  .feedback_intro{
    margin:0 0 18px;
    color:var(--text);
    font-size:14px;
  }
  .feedback_intro a{
    color:var(--link);
    font-weight:600;
    text-decoration:underline;
  }
  
  .feedback_form_label{
    display:block;
    margin:16px 0 6px;
    color:var(--label);
    font-weight:600;
  }
  
  .feedback_form_input,
  .feedback_form_textarea{
    width:420px;
    background:var(--input-bg);
    border:1px solid var(--border);
    border-radius:2px;
    padding:8px 10px;
    font:400 14px 'Exo 2',sans-serif;
    color:#333;
    outline:none;
  }
  .feedback_form_input{ height:34px; }
  .feedback_form_textarea{
    height:120px;
    resize:vertical;
  }
  
  .feedback_checkbox_row{
    display:flex;
    align-items:center;
    gap:8px;
    margin:14px 0 14px;
    color:var(--text);
  }
  .feedback_checkbox_row a{
    color:#000;
    text-decoration:underline;
    font-weight:600;
  }
  
  .feedback_form_actions{
    display:flex;
    gap:16px;
    margin:14px 0 22px;
  }
  .feedback_form_button{
    padding:10px 16px;
    background:var(--btn-bg);
    border:1px solid var(--btn-border);
    border-radius:2px;
    color:#6b6b6b;
    cursor:pointer;
    font:600 13px 'Exo 2',sans-serif;
  }
  
  .feedback_note{
    color:var(--label);
    font-size:13px;
  }


