.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:44px;

    padding:0 24px;

    background:#2F5FE3;
    color:#fff;

    border:none;
    border-radius:10px;

    font-size:14px;
    font-weight:600;

    white-space:nowrap;

    cursor:pointer;

    transition:.2s ease;

}

.btn-primary:hover{

    background:#244fc5;

}

.btn-primary:active{

    transform:scale(.98);

}