.toast-success {
    border: 2px solid green;
    font-size: 16px;
    background-color: #f6fff6;
    border-radius: 10px;
}

.toast-success .toast-icon {
    height: 40px;
    width: 40px;
    background-color: forestgreen;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 600;
    border-radius: 50px;
}

.toast-error {
    border: 2px solid red;
    font-size: 16px;
    background-color: #FFF3F3;
    border-radius: 10px;
}

.toast-error .toast-icon {
    height: 40px;
    width: 40px;
    background-color: red;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 600;
    border-radius: 50px;
}

.toast-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.toast-body {
    border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.toast-header strong {
    font-size: 18px;
}
