.btn {
    display: inline-block;
    width: auto;
    padding: 15px;
    padding-left: 50px;
    padding-right: 50px;
    background: rgb(35, 74, 213);
    background: linear-gradient(
        90deg,
        rgba(35, 74, 213, 1) 0%,
        rgba(6, 97, 221, 1) 100%
    );
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.btn:hover {
    background: rgb(213, 35, 65);
    background: linear-gradient(
        90deg,
        rgb(180, 19, 46) 0%,
        rgba(213, 35, 65, 1) 100%
    );
}