.mana-project-shell {
    box-sizing: border-box;
    max-width: 1040px;
    margin: 48px auto;
    padding: 0 20px;
}

.mana-project-shell *,
.mana-project-shell *::before,
.mana-project-shell *::after {
    box-sizing: border-box;
}

.mana-panel {
    /*border: 1px solid #d6dbe0;*/
    border-radius: 6px;
    padding: 24px;
    /*background: #fff;*/
}

.mana-form {
    max-width: 680px;
    margin: 0 auto;
}

.mana-form form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.mana-form label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

.mana-field {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
}

.mana-field legend {
    font-weight: 600;
}

.mana-form .mana-choice {
    display: flex;
    font-weight: 400;
}

.mana-choice input {
    width: auto;
}

.mana-form input,
.mana-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c969f;
    border-radius: 4px;
    font: inherit;
}

input[type="radio"],
input[type="checkbox"] {
    width: min-content;
}

.mana-button,
.mana-form button {
    display: inline-block;
    width: fit-content;
    /*border: 0;*/
    /*border-radius: 4px;*/
    /*padding: 10px 16px;*/
    /*color: #fff;*/
    /*background: #145a32;*/
    font: inherit;
    font-weight: 600;
    /*text-decoration: none;*/
    cursor: pointer;
}

.mana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.mana-grid h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.mana-progress {
    height: 10px;
    overflow: hidden;
    border-radius: 3px;
    background: #e6e9ec;
}

.mana-progress span {
    display: block;
    height: 100%;
    background: #145a32;
}

.mana-notice {
    margin: 18px 0;
    padding: 12px;
    border-left: 4px solid;
}

.mana-notice.success {
    border-color: #145a32;
    background: #edf7ef;
}

.mana-notice.error {
    border-color: #b42318;
    background: #fff1f0;
}

.mana-back {
    display: inline-block;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .mana-project-shell {
        margin: 28px auto;
    }

    .mana-panel {
        padding: 18px;
    }
}