.pvp-checkcode-block {
    width: 250px;
    height: 280px;
    background: #f4f5fc;
    border-radius: 5px;
    box-shadow: 0 0 15px 10px #c8c8c8;

    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
}

.pvp-checkcode-block .order-id {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
}

.pvp-checkcode-block .code {
    margin: 20px 0;
    text-align: center;
}

.pvp-checkcode-block .code .code__input {
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #b9c0de;
    width: 90%;
}

.pvp-checkcode-block .code .code__input::placeholder {
    font-size: 14px;
    color: #a5abc5;
}

.pvp-checkcode-block .send {
    margin: 20px 0;
    text-align: center;
}

.pvp-checkcode-block .send .send__button {
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #b62e4a;
    border: none;
    border-radius: 5px;
    width: 90%;
    padding: 5px 10px;
}

.pvp-checkcode-block .result {
    display: flex;
    flex-flow: column nowrap;

    align-items: center;
    justify-content: space-around;
}

.pvp-checkcode-block .result .result-icon {
    width: 50px;
    height: 50px;
    background-size: cover;
}

.pvp-checkcode-block .result.error .result-icon {
    background-image: url('images/bad.png');
}

.pvp-checkcode-block .result.success .result-icon {
    background-image: url('images/ok.png');
}

.pvp-checkcode-block .result .result-message {
    text-transform: uppercase;
    font-size: 16px;
    margin: 10px 5px;
}

.pvp-checkcode-block .code .code__input.error,
.pvp-checkcode-block .result.error .result-message {
    color: #ef1b26;
}

.pvp-checkcode-block .result.success .result-message {
    color: #8fc742;
}