.titled{
  text-align: center;
  font-size: 29px;
  font-weight: 400;
}
.titled span{
  border-bottom: 5px solid #ed1c24;
  padding-bottom: 7px;
}
.form-event{
  margin: auto;
  width: 59%;
  margin-top: 15px;
}
.form-event form{
  
}

.form-event form ul{
  
}

.form-event form ul li{
  list-style: none;
}

.form-event form ul li label{
    font-size: 18px;
    display: flex;
    margin-bottom: 3px;
    margin-left: 21px;
    width: max-content;
}

.form-event form ul li input{
    border: 1px solid #bdbdbd;
    padding: 10px;
    padding-left: 21px;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.form-event form ul li input:hover{
    border: 1px solid #757575;
}
.form-event form ul li input:focus{
    border: 1px solid #757575;
}

.form-event form button{
    background: #2f2f2f;
    border: 0;
    padding: 14px;
    font-size: 17px;
    border-radius: 4px;
    color: #fff;
    float: right;
    outline: none;
    border-right: 36px solid #474747;
    transition: all 0.2s ease;
    position: relative;
}

.form-event form button:hover {
    background: #2d2d2d;
}

.form-event form button i{
    font-style: normal;
    font-size: 34px;
    font-weight: 100;
    position: absolute;
    z-index: 9999;
    top: 1px;
    right: -23px;
    transition: all 0.2s ease;
}

.form-event form button:hover i{
    font-weight: 400;
    animation: buttonanim 0.5s infinite;
}

@keyframes buttonanim {
  0%{
  right: -23px;
  }
  100%{
  right: -25px;
  }
}

@media (max-width: 1120px) {
.form-event {
    margin: auto;
    width: 89%;
    margin-top: 15px;
    }
    
.titled {
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 32px;
    }
}