body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 5rem 25rem;
}

.content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
	padding: 20px;
}

.content-text {
	padding: 20px;
	font-weight: bold;
	text-align: center;
}

label {
    font-weight: bold;
    margin-top: 10px;
}
input[type=text], input[type=tel], input[type=email], input[type=submit], select, .flatpickr-input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	-webkit-appearance: none;
 	-moz-appearance: none;
 	appearance: none;
}

select { 
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
}

input[type=submit] {
    /*background-color: #4CAF50;*/
	background-image: linear-gradient(to right, rgb(35,233,177) 0%, rgb(93,166,203) 100%) !important;
    color: white;
    cursor: pointer;
}
/*input[type=submit]:hover {
    background-color: #45a049;
}*/

.message {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #fff; /* Default text color */
	font-size: 4vw;
}

.success {
    background-color: #4CAF50; /* Green background for success */
    border: 1px solid #46a049;
}

.error {
    background-color: #ffdddd; /* Red background for error */
    color: #d8000c;
    border: 1px solid #d8000c;
}

.header {
	background-image: linear-gradient(to right, rgb(35,233,177) 0%, rgb(93,166,203) 100%) !important;
	padding: 10px;
}

/*header > a {
	background-image: url("logo.png");
}*/

.logo {
	display: block;
  	margin: auto;
  	max-width: 60%;
  	max-height: 60%;
}

@media screen and (max-width: 1000px) {
	select {
		font-size: 3em; 
		border: black;
	}
    body {
        height: auto; /* Allow body to grow in height on small screens */
        padding: 3rem 7rem; /* Increase padding for small screens */
    }
    .content {
        width: 100%; /* Make form use all available width */
        box-shadow: none; /* Optional: remove shadow on small screens for a flatter design */
    }
    input[type=text], input[type=tel], input[type=email], input[type=submit], .flatpickr-input {
        height: 4vh; /* Adjust input width for smaller screens */
        margin-bottom: 2vh;
        font-size: 3vw;
    }
    label {
        font-size: 4vw;
    }
	.content-text {
		font-size: 4vw;
	}
}
