.contact-container {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-form label {
    margin-top: 15px;
    display: block;
    font-size: 15px;
}

/* ONLY THIS BLOCK SHOULD STYLE INPUTS */
form input,
form textarea,
form select {
    background: #ffffff !important;
    color: #000000;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Autofill fix */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Focus outline */
form input:focus,
form textarea:focus {
    border-color: #ff6600;
    outline: none;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to right, #e30613, #ff6600);
    border-r
