I’m here for you! Message me if you have a question, suggestion, anything!
.contact-form-container { max-width: 400px; margin: auto; padding: 20px; background: #f9f9f9; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .contact-form-container label { display: block; font-weight: bold; margin-top: 10px; } .contact-form-container input, .contact-form-container textarea { width: 100%; padding: 10px; margin-top: 5px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; } .contact-form-container textarea { height: 100px; resize: vertical; } .contact-form-container button { width: 100%; padding: 10px; margin-top: 15px; background: #89ecda; /* Updated color */ color: #333; /* Darker text for better contrast */ border: none; border-radius: 5px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; } .contact-form-container button:hover { background: #6dcbb8; /* Slightly darker shade for hover effect */ color: white; }
