* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Pontano Sans', sans-serif !important;
    background: #f7f7fb;
    color: #222;
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}

h1 {
    margin: 16px 0;
    font-size: 24px;
}

.btn {
    background: #1e4ed8;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn.small {
    padding: 4px 8px;
    font-size: 12px;
}

.form {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea,
select {
    padding: 10px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
}

.actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

.alert.error {
    background: #fee2e2;
    color: #7f1d1d;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
}

.cardCustom {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    width: 100%;
    margin-bottom: 16px;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.footer {
    border-top: 1px solid #eee;
    margin-top: 24px;
}

.muted {
    color: #667085;
    font-size: 13px;
}

button {
    background: #1e4ed8;
    color: #fff;
    border: 0;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover,
.btn:hover {
    opacity: .92;
}

@media (max-width: 640px) {
    .grid2 {
        grid-template-columns: 1fr;
    }

    .page-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}