form {
    background: white;
    padding: calc(var(--inner-padding) * 1.3);
    border-radius: var(--corners);
    width: 100%;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 5rem;
    box-shadow: 0 0 7px rgba(17, 17, 17, 0.15);
}

form h3 {
    font-size: clamp(15px, 4.5vw, 1.2rem);
    padding: 0;
    margin: 0;
}

form input, form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: clamp(12px, 1.2vw, 14px);

    resize: none;
}
form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px;
    font-size: clamp(13px, 1.2vw, 1rem);
    width: 100%;
    border-radius: var(--corner-radius);
    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    border: 2px solid var(--accent-color);
    opacity: 1;
    transition: opacity 0.3s ease-in, 
            transform 0.15s ease-in,
            background 0.25s ease-in;
}
form button.debounce{
    opacity: 0.3;
}

form button:hover {
    color: var(--accent-color);
    background: transparent;
    transform: translateY(-2px);
}

form button:active{
    transform: translateY(-0px);
}

#form-response {
    z-index: 50;

    position: sticky;
    top: calc(6.5vh - 1px);
    width: 100vw;
    height: var(--form-response-height);

    font-size: 1rem;

    text-align: center;

    color: var(--text-color);
    background-color: var(--accent-color);

    opacity: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in;
    /* border: 2px solid orange; */
}
#form-response.show {
    opacity: 1;
}