/* Basic reset */
.form-container {
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure form takes full container width */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="text"],
.contact-form textarea,
.contact-form select { /* Added select here */
    width: 100%; /* Full width of container */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    height: 100px;
    resize: vertical; /* Allow vertical resizing */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder { /* Added select::placeholder here */
    font-size: 16px;
    color: #888;
}

.contact-form button {
    width: 100%; /* Full width of container */
    background-color: #061726;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #1f065c;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
    }
}