.container {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 1200px;
}

.notification {
    max-width: 1200px;
    width: 80%;
    border-radius: 6px;
    box-shadow: .0625rem .0625rem 0.0925rem #514c79;
    padding:20px;
    margin: 10px auto;
    position: relative;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50px;
    width: 18px;
    height: 18px;
    line-height: 15px;
    text-align: center;
    border: 1px solid #ba4849;
    color: #ba4849;
}

.notification-title {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.notification-message {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
}

.success {
    background: #3b30d4;
}