.events-buttons-register{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: space-between;
    margin: 1rem 0;
}
.event{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin: .5rem 0;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ccc;
}  
.event-date{
    color: #9DAFBD;
}

@media screen and (max-width: 700px){
    .event{
        flex-direction: column;
    }
    .event-info{
        margin-bottom: 1rem;
    }
}