/* STATUS */
.status__title{
    margin-top: -40px;
}

.status__section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.status{
    background-color: #2B2B3A;
    border: 2px solid #3C3C4F;
    border-radius: 15px;
    width: 500px;
    padding: 20px;
    font-weight: 500;
    color: white;
}

.status--red{
    color: #e75a62;
}

.status--success{
    color: #4BBF73;
}

.status--info{
    color: #3685A7;
}

.status__info{
    margin-top: 80px;
    font-weight: 600;
}

.status__info b{
    color: #8B8B92;
}

.status__info p{
    color: #66666E;
}

.status__back{
    margin-top: 70px;
    color: #C2C2C2;
    font-weight: 600;
}

@media only screen and (max-width: 1100px) {
    .status{
        width: 100%;
        padding: 20px 20px;
    }
}