a.btn,
button.btn,
button.btn[type="button"],
button.btn[type="submit"] {
    /* margin: 20px 0 10px 0; */
    padding: 5px 15px;
    background-color: var(--color-primary);
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    height: 50px;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

a.btn:hover,
button.btn:hover,
button.btn[type="submit"]:hover {
    background-color: rgba(var(--color-primary-var), 0.9);
}

a.btn:disabled,
button.btn:disabled,
button.btn[type="button"]:disabled,
button.btn[type="submit"]:disabled {
    cursor: default;
    background-color: rgb(218, 218, 218);
    color: rgb(160, 160, 160);
}

a.btn:active:not(:disabled),
button.btn:active:not(:disabled),
button.btn[type="button"]:active:not(:disabled),
button.btn[type="submit"]:active:not(:disabled) {
    scale: 0.95;
    transition-duration: 0.5s;
}
