.message {
    background: #E7F2F9;
    border: 1px solid #8BBEE2;
    border-radius: 5px;
    display: flex;
    margin: 50px 0 40px 0;
    padding: 15px 25px;
}

.message p {
    color: #282828;
    line-height: 20px;
}

.message .icon {
    height: 24px;
    margin: 0 25px 0 0;
    width: 24px;
}

.message .icon .alert {
    background-image: url('/static/images/alert.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 24px;
    width: 24px;
}

@media screen and (max-width: 900px) {
    .message {
        background: #E7F2F9;
        border-bottom: 1px solid #8BBEE2;
        border-radius: 0;
        display: flex;
        margin: -20px 0 18px 0;
        padding: 12px 18px;
    }

    .message p {
        font-size: 14px;
    }
    
    .message .icon {
        height: 15px;
        margin: 0 18px 0 0;
        width: 15px;
    }
}