
/* Buttons */

.btn-primary {
    background: linear-gradient(to right, rgb(168 85 247), rgb(37 99 235));
    width: 15rem;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-sf-pro);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    transform: scale(1);
    float: left;
}

.btn-primary:hover {
    background: linear-gradient(to right, rgb(147 51 234), rgb(29 78 216));
    transform: scale(1.05);
    color: white;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    width: 15rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-sf-pro);
    cursor: pointer;
    text-decoration: none;
    display: block;
    float: left;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}