.vnf-actions{
    display:flex;
    gap:14px;
    margin:30px 0 10px;
    align-items:stretch;
}

.vnf-btn{
    flex:1 1 0;
    min-height:58px;
    padding:14px 20px;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border-radius:12px;
    background:#118a45;
    color:#fff !important;
    text-decoration:none !important;
    font-size:17px;
    font-weight:700;
    line-height:1.2;
    border:0;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:transform .15s ease,background .15s ease,box-shadow .15s ease;
}

.vnf-btn:hover{
    background:#086b35;
    color:#fff !important;
    transform:translateY(-1px);
    box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.vnf-btn:focus-visible{
    outline:3px solid #9be7bb;
    outline-offset:2px;
}

.vnf-btn[disabled]{
    opacity:.65;
    cursor:not-allowed;
    transform:none;
}

.vnf-icon{
    width:31px;
    height:31px;
    min-width:31px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:29px;
    line-height:1;
}

.vnf-google-icon{
    border:2px solid rgba(255,255,255,.95);
    border-radius:50%;
    font-size:21px;
    font-weight:800;
}

@media (max-width:680px){
    .vnf-actions{
        flex-direction:column;
        gap:12px;
        margin-top:24px;
    }

    .vnf-btn{
        width:100%;
        min-height:56px;
        font-size:16px;
        padding:13px 16px;
    }
}
