body {
font-family: Arial, sans-serif;
background: #f4f6f8;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.contact-box {
background: white;
padding: 30px;
border-radius: 8px;
width: 350px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

input, textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border:1px solid #ccc;
}

button {
width: 100%;
padding: 10px;
background:#6a11cb;
color:white;
border:none;
cursor:pointer;
}

.success {color:green;}
.error {color:red;}
