/* Form Component Styles */
.form-item {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-item:focus {
    outline: none;
    border-color: #1de782;
}

.form-textarea {
    resize: vertical;
    height: 100%;
    min-height: 180px;
}

::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.button-primary.sendButton {
    background-color: #1de782;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-primary.sendButton:hover {
    background-color: #18b868;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-textarea {
        height: auto;
        min-height: 150px;
    }
}