/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--leaf-green);
    color: var(--primary-harvest-green);
}

.btn-primary:hover {
    background: #b8961f;
}

.btn-outline {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

/* Forms */
input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--primary-harvest-greent);
    border-radius: 4px;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-harvest-greend);
}

/* Cards / CTAs */
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s ease;
}