/* Basic page styling */
body {
    margin: 0;
    padding: 0;
    font-family:Muli;
    background-color: #fff;
    color: #333;
}

/* Form container */
.contact-container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    font-family:Muli;
	font-size:14px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.contact-container h5 {
    margin-top: 0;
    font-family:Muli;
	font-size:18px;
    margin-bottom: 25px;
    text-align: center;
}
.contact-container p {
    margin-top: 0;
    font-family:Muli;
	font-size:12px;
    margin-bottom: 25px;
    text-align: center;
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
}

/* Labels */
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Text inputs and textarea */
.form-group input,
.form-group textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family:Muli;
}

/* Prevent textarea from becoming too small */
.form-group textarea {
    resize: vertical;
}

/* Focus effect */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #555;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.button-group button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-family:Muli;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Submit button */
.submit-button {
    background-color: #444;
    color: #ffffff;
}

.submit-button:hover {
    background-color: #999;
}

/* Reset button */
.reset-button {
    background-color: #F00;
    color: #FFF;
}

.reset-button:hover {
    background-color: #ff7575;
}