:root {
    --ink: #6DCFF6;
    --muted: #afb5c2;
    --line: #e5e7eb;
    --bg: #2e3961;
    --card: #fff;
    --lblue: #6DCFF6;
    --dblue: #2e3961;
}

body {
    margin: 0;
    font-family: system-ui;
    background: var(--bg);
    color: var(--ink)
}

.wrap {
    max-width: 1100px;
    margin: auto;
    padding: 24px
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px
}

.tab {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    background: #fff
}

.tab.active {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 56, 97, .15)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 10px;
}

.linha {
    margin: 10px;
}

@media(max-width:768px) {
    .row {
        grid-template-columns: 1fr
    }
}

label {
    font-weight: 700;
    font-size: 13px;
    display: flex;
    margin-bottom: 6px
}

.req:after {
    content: " *";
    color: #dc2626
}

input,
select {
    box-sizing: border-box;
    width: 100%;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 12px
}

input:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 56, 97, .15)
}

.hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.hidden {
    display: none
}

button {
    padding: 12px 18px;
    border-radius: 10px;
    border: 0;
    font-weight: 700;
    cursor: pointer
}

.primary {
    background: var(--lblue);
    color: var(--dblue);
}
