/* contact-form.css */

#contactOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.form-container {
    width: 350px;
    background-image: url('sheetmusic.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
	text-align: center;
    color: #363636; /* Set text color to white for better readability */
}


.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

textarea {
    height: 150px;
}

input[type="submit"] {
    background-color: #363636;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #f8f8f8;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #555;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #f8f8f8;
}
.close-btn {
	color: #363636;
}
