.footer-form-modal {
    display: none;
    /* display: flex; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.footer-form-modal .form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 30px;
}

.footer-form-modal .form-container input,
.footer-form-modal .form-container select,
.footer-form-modal .form-container label,
.footer-form-modal .form-container button {
    display: block;
    width: 100%;
    outline: none;
}

.input-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 14px;
}

.inputContext {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 100px;
    resize: none;
    outline: none;
    padding: 10px;
}

.checkboxWrapper {
    margin-left: 10px;
    width: 100%;
}

.checkboxContainer {
    position: relative;
    display: inline-block;
    margin: 14px 0;
}

.modalCheckBox {
    position: absolute;
    left: 69px;
    top: 2px;
    height: 13px;
}


.footer-form-modal .form-container input,
.footer-form-modal .form-container select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.footer-form-modal .form-container button {
    background-color: rgba(155, 225, 93, 1.2);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.footer-form-modal .form-container button:hover {
    background-color: rgba(155, 225, 93, 0.7);
}

.footer-form-button {
    position: absolute;
    bottom: 300px; /* Adjusted to be above the social-icons toggle button */
    background-color: rgba(155, 225, 93, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    z-index: 1001; /* Ensure the button is above the social-icons */
}

@media (max-width: 768px) {
    .footer-form-modal .form-container {
        padding: 20px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .input-container {
        flex-direction: column;
        gap: 10px;
    }
    .modalCheckBox {
        top: 2px;
    }
}