.instructions {
    padding: 0;
    border: 2px solid #545454;
    margin-bottom: 20px;
}

.instructions h2 {
    background-color: #545454;
    color: white;
    text-align: center;
    margin-top: 0;
}

.instructions p {
    padding: 0 15px;
}

.instructions p:last-child {
    margin-bottom: 15px;
}

.instructions img {
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 10px;
    margin-top: 0;
    border: 1px solid rgb(178, 177, 177);
}



.reg__list {
    max-width: 100%;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    list-style-type: none;
    padding-left: 0;
    counter-reset: custom-counter;
}

.reg__list li {

    position: relative;

    padding: 10px 5px 10px 50px;
    margin-bottom: 5px;
    background: whitesmoke;
    border: 1px solid #dfdddd;
    border-left: 3px solid #545454;
    border-right: 3px solid #545454;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.reg__list li:before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    width: 30px;
    height: 30px;
    color: #545454;
    border: 3px solid #545454;
    border-radius: 50%;
    left: 10px;
    top: 50%;
    content: counter(custom-counter);
    counter-increment: custom-counter;
    position: absolute;
    transform: translate(0%, -50%);
}


.imp {
    padding-left: 10px;
    border-left: 3px solid #007fff;
    font-style: italic;
}


.button-link {
    display: block;
    margin: 1.8rem auto;
    width: 300px;
    padding: 1rem 0;
    text-align: center;
    background-color: #007fff;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.5s;
    
}

.button-link:hover {
    background-color: #e11229!important;
}

p a, .reg__item a {
    color: #007fff!important;
    font-weight: inherit!important;
    border-bottom: none!important;
    text-decoration: underline!important;
   
}

p a:hover, .reg__item a:hover {
    color: #e11229!important;
    background-color: transparent!important;
}

