.errors {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--black-blue);
    display: flex;
    flex-direction: column;
    color: white;
}
.errors__error {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 50px;

}
.errors__close {
    margin-right: 30px;
    width: 30px;
    height: 30px;
    align-self: flex-end;
    padding: 10px;
    outline: none;
    background-color: transparent;
    background-image: url("../../../images/red-cross.svg");
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
}