/* ROW */
.form-row {
    display:flex;
    gap:10px;
}

/* HALF WIDTH */
.form-row input {
    width:100%;
}

/* FULL WIDTH */
#contactForm input,
#contactForm textarea {
    width:100%;
    padding:12px;
    margin-bottom:10px;
    font-size: 14px;
}

/* Focus effect */
#contactForm input:focus,
#contactForm textarea:focus {
    outline:none;
    border:2px solid #43CBAF;
    box-shadow:0 0 5px rgba(67,203,175,0.5);
}

/* BUTTON */
#contactForm button {
    background:#43CBAF !important;
    color:#fff;
    border:none;
    width:100%;
    padding:14px;
    border-radius:5px;
    cursor:pointer;
    transition: background 0.3s ease;
}

#contactForm button:hover {
    background:#164251 !important;
}

/* MOBILE */
@media (max-width:600px){
    .form-row {
        flex-direction:column;
    }
}

#contactMsg {
    margin-top:10px;
    text-align:center;
    font-weight:bold;
}

/* FORM BOX SHADOW */
#contactForm {
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}