.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:

    linear-gradient(135deg,#2563EB,#4F46E5);

    color:white;

    box-shadow:var(--shadow-medium);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-premium);

}

.btn-secondary{

    background:#EEF4FF;

    color:#2563EB;

}

.btn-secondary:hover{

    background:#2563EB;

    color:white;

}

.btn-outline{

    border:2px solid #2563EB;

    color:#2563EB;

}

.btn-outline:hover{

    background:#2563EB;

    color:white;

}