html { height: 100%; }

body {
    width: 100%;
    height: 100%;
    background: var(--s-900);
    color: var(--s-25);
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 400;
    overflow-y: scroll;
}

* { margin: 0; padding: 0; outline: 0; }

a { color: var(--s-900); text-decoration: none; }
a img { border: 0; }

strong { font-weight: 700; }
input, textarea, select, button { font-family: sans-serif; }

.wrap { display: flex; flex-direction: column; align-items: center; width: 100%; min-height: 100%; }
.content { display: flex; flex-direction: column; box-sizing: border-box; width: 1600px; max-width: 100%; padding: 0 10px; }

.header { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 80px 0; }
.header .content { width: 1634px; }
.header .logo { display: flex; width: 100%; }
.header .logo a { display: flex; }
.header .logo img { max-width: 100%; height: 40px; }

.page-container { display: flex; flex-direction: column; width: 100%; }

.page { display: flex; flex-direction: column; align-items: center; width: 100%; padding-bottom: 80px; }

.title { display: flex; flex-direction: column; width: 100%; margin-bottom: 26px; }
.title h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.72px; }

.form-container { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px 20px; width: 100%; }
.form-container .form-item { flex-basis: 280px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.form-container .form-item.width-full { flex-basis: auto; width: 100%; }
.form-container .form-item .item-heading { color: var(--s-300); font-size: 16px; line-height: 24px; }
.form-container .form-item .button { margin-top: 24px; }

.columns-container { display: flex; flex-wrap: wrap; gap: 34px 20px; width: 100%; }
.columns-container .form-container { flex-grow: 1; flex-basis: 580px; width: auto; }

.table-container { display: flex; width: 100%; overflow-x: auto; }
.table { border: 1px solid var(--s-700); }
.table tr th,
.table tr td { padding: 15px 10px; font-size: 14px; line-height: 18px; }
.table tr th { background: var(--s-800); color: var(--s-300); font-weight: 400; }
.table tr td { border-top: 1px solid var(--s-700); }
.table tr.dark-border td { border-color: var(--s-800); }
.table tr th.first,
.table tr td.first { padding-left: 20px; }
.table tr th.last,
.table tr td.last { padding-right: 20px; }

.small-text { font-size: 12px; }
.grey-text { color: var(--s-400); }
.red-text { color: var(--red-50); }
.green-text { color: var(--green-50); }

.select { box-sizing: border-box; width: 100%; height: 48px; padding: 0 16px; background: var(--s-900); border: 1px solid var(--s-700); color: var(--s-25); font-size: 16px; cursor: pointer; }

.input { box-sizing: border-box; width: 100%; height: 48px; padding: 0 16px; background: var(--s-900); border: 1px solid var(--s-700); color: var(--s-25); font-size: 16px; }

.textarea { box-sizing: border-box; width: 100%; height: 200px; padding: 12px 16px; background: var(--s-900); border: 1px solid var(--s-700); color: var(--s-25); font-size: 16px; line-height: 24px; resize: none; }

.button { align-self: flex-start; flex-shrink: 0; display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; box-sizing: border-box; min-height: 48px; padding: 12px 16px; background: var(--s-25); border: 1px solid var(--s-900); color: var(--s-900); font-size: 16px; font-weight: 700; line-height: 22px; text-align: center; cursor: pointer; }
.button .icon { flex-shrink: 0; display: flex; margin-left: 10px; }

::placeholder { color: var(--s-600); opacity: 1; }