/* Alert messages, matching Employer Portal's: a soft tint and a colored disc that shows the
   state. The glyph is an inline SVG, not a font icon, because the login page loads no icon
   font. The disc floats so a validation summary's <ul> still wraps beside it.
   Used by the site layout (through the bundle) and by the login page, which links it directly. */
.alert {
    padding: 10px 12px;
    border-radius: 6px;
    color: #101828;
    line-height: 20px;
}
.alert ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.alert::before {
    content: "";
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}
.alert-danger {
    background-color: #FEE9E7;
    border-color: #F97066;
}
.alert-danger::before {
    background-color: #D92D20;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.alert-success {
    background-color: #ECFDF3;
    border-color: #75E0A7;
}
.alert-success::before {
    background-color: #17B26A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.alert-warning {
    background-color: #FFFAEB;
    border-color: #FEC84B;
}
.alert-warning::before {
    background-color: #F79009;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='13'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E");
}
.alert-info {
    background-color: #EFF8FF;
    border-color: #84CAFF;
}
.alert-info::before {
    background-color: #2E90FA;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='11' x2='12' y2='18'/%3E%3Cline x1='12' y1='6' x2='12.01' y2='6'/%3E%3C/svg%3E");
}
