@charset "utf-8";
/* CSS Document */
/* Center form and add spacing */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #F6F6F6;
    border: 1px solid #DDD;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style labels and spacing */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Style input fields */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;

    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #CCC;
    border-radius: 4px;
    background: #FCFCFC;
}

/* Style the submit button */
form button {
    background: #43B16C;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
}

/* Button hover effect */
form button:hover {
    background: #369956;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
}
