/* Reset */
body, html, div, img, p, h1, h2, h3, h4, h5, h6, ul, ol,
li, dl, dt, dd, form, a, fieldset, input, th, td, section
{
	margin: 0; padding: 0; border: 0; outline: none;
} 
h1, h2, h3, h4, h5, h6 
{
	font-weight: normal;
}
button
{
	all: unset;
	cursor: pointer;
}
ul
{
	list-style: none;
}
a 
{
	text-decoration: none;
	color: #343235;
}
* 
{
	box-sizing: border-box;
}
*:before, *:after 
{
	box-sizing: border-box;
}
/*--- end reset --*/

body 
{
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 2rem;
}

.form-container 
{
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

h1 
{
  color: #660033;
  margin-bottom: 1rem;
}

form 
{
  display: flex;
  flex-direction: column;
}

label 
{
  margin-top: 1rem;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea 
{
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.25rem;
}

fieldset 
{
  border: 1px solid #ccc;
  padding: 1rem;
  margin-top: 1rem;
}

legend 
{
  font-weight: bold;
}

button 
{
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: #950000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
button:hover {
  background-color: #B80000;
}

button:active {
  background-color: #6F0000;
}
.formHelper
{
	position: absolute;
	left: -9999px;
	visibility: hidden;
}
#time 
{
	display: none;
}

.form-container a 
{
	color: #4a5a5a;
	border-bottom: 2px solid #950000;
	transition: all .5s ease;
}
.form-container a:hover
{
	color: #950000;
}