.butt {
    margin-top: 20px;
    height: 49px;
    border-radius: 30px 30px 30px 30px;
    opacity: 1;
    border: 2px solid #2c68ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: Inter-Medium, Inter;
    font-weight: 500;
    color: #2c68ff;
    cursor: pointer;
    transition: all 0.5s;

}
.butt i {
    background-image: url(../img/rw.svg);
    width: 18px;
    height: 12px;
    margin-left: 0px;
    transition: all 0.5s;
}
.butt:hover {
    background-color: rgba(44, 104, 255, 1);
    color: rgba(255, 255, 255, 1);
}
.butt:hover i {
    margin-left: 10px;
}