:root {
    --primary-color: #6a47ed;
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.small-head span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(36, 12, 242) 0%, rgb(0, 169, 181) 100%) text;
    
}

.small-head {
    background-color: #e3e2fe;
    padding: 10px 16px;
    border-radius: 20px;
    width: fit-content;
}

.my-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.my-btn:hover {
    background-color: #000;
    color: #fff;
}


.wa-btn {
    text-decoration: none; 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: fixed; 
    right: 28px; 
    bottom: 28px; 
    background-color: #22c55e; 
    z-index: 40;
}