.infobox {
    margin-bottom: 1.5em;
    padding: 20px 8px 8px;
    border-radius: 10px;
    background-color: #e6f6e8;
    border: 1px solid #9bdaa2;
}

.infobox-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    gap: 12px;
    color: #002050;
}

.infobox-content {
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
    border: 1px solid #9bdaa2;
}

.infobox.alert {
    background-color: #ffe4e4;
    border-color: #ffbfbf;
}

.infobox.alert .infobox-content {
    border-color: #ffbfbf;
}

.infobox.information {
    background-color: #fdf3e0;
    border-color: #e8d3ab;
}

.infobox.information .infobox-content {
    border-color: #e8d3ab;
}

.infobox.tip {
    background-color: #d0f1ff;
    border-color: #80c0dc;
}

.infobox.tip .infobox-content {
    border-color: #80c0dc;
}