input[type="Submit"]{
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}
input[type="submit"]:hover {
	background-color: #0056b3;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 8px 12px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
	outline: none;
	background-color: #f0f8ff;
}

.date-wrapper {
    display: flex;
    align-items: center;
    gap: 6px; /* space between textbox and calendar */
    max-width: 250px; /* optional */
}

.date-wrapper input[type="text"] {
    flex: 1;
}