:root{
    --bg:#f5f7fb;
    --panel:#ffffff;
    --line:#e5eaf2;
    --text:#0f172a;
    --muted:#64748b;
    --primary:#0f274d;
    --primary-2:#17376b;
    --success:#0f9f6e;
    --danger:#dc2626;
    --radius:18px;
    --shadow:0 10px 30px rgba(15, 23, 42, 0.06);
}

*{
    box-sizing:border-box;
}

html, body{
    margin:0;
    padding:0;
}

body{
    font-family:Inter, Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

input,
select,
textarea,
button{
    font:inherit;
}

input,
select,
textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d7e0ed;
    border-radius:14px;
    background:#fff;
    color:var(--text);
    outline:none;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#7aa2e3;
    box-shadow:0 0 0 4px rgba(37,87,167,.08);
}

textarea{
    resize:vertical;
    min-height:120px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}