.showMessage {
    border-radius: 20px;
    position: fixed;
    top: calc(50% - 150px);
    left: 50%;
    color: #666;
    z-index: 99999999;
    transform: translate(-50%, 0);
    width: 390px;
    height: 300px;
    background-color: #fff;
    border: 1px solid #eee;
}

.img-error {
    background: url('../../images/error.png');
    background-size: 100% 100%;
}

.img-success {
    background: url('../../images/success.png');
    background-size: 100% 100%;
}

.showMessage>div:first-of-type {
    position: absolute;
    left: calc(50% - 75px);
    top: -22px;
    width: 150px;
    height: 150px;
}

.message {
    width: 100%;
    height: calc(100% - 128px);
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    margin-top: 128px;
}

.message p {
    width: 100%;
    text-align: center;
}

.message button {
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
}

.background-error {
    background-color: #e7640c;
}

.background-success {
    background-color: #0f71ff;
}

.showMessageSuccess {
    color: #67c23a;
}

.showMessageError {
    color: #F76C6C;
}