/***** styling *****/

.swal2-container .swal2-styled.swal2-confirm {
    background-color: #ff6982;
    border-color: #ff6982;
    color: #ffffff;
    padding-left: 3rem;
    padding-right: 3rem;
}

.swal2-container .swal2-actions {
    margin-top: 0;
}

/***** /styling *****/

/***** errors from the standard django form *****/

/* reset formatting */
.swal2-container ul.errorlist {
    list-style-type: none;
    padding: 0;
}

/* make the outermost lists look like cards */
.swal2-container .swal2-html-container > ul.errorlist > li {
    background-clip: border-box;
    background-color: rgba(0, 0, 0, .075);
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, .125);
    display: flex;
    flex-direction: column;
    font-weight: 600;
    min-width: 0;
    padding-top: 0.25rem;
    position: relative;
    text-transform: uppercase;
    word-wrap: break-word;
}
/* make the inner lists look like card bodies */
.swal2-container .swal2-html-container > ul.errorlist > li > ul.errorlist {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, .125);
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 0.25rem;
    padding: 0.25rem;
    text-transform: none;
}

/* spacing between the sets of errors for each field */
.swal2-container .swal2-html-container > ul.errorlist > li:not(:last-child) {
    margin-bottom: 0.5rem;
}

/***** /errors from the standard django form *****/
