html, body {
	min-height: 100%;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
}

body, div, form, input, p { 
	padding: 0;
	margin: 0;
	font-family: Roboto, Arial, sans-serif;
}

h1 {
	font-weight: 400;
}

h2 {
	font-weight: 400;
}

h3 {
	font-weight: 400;
}

a:hover {
	cursor:pointer;
}

.form-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* align-items: center; */
	width: 90%;
	margin-left: 2.5%;
	padding: 20px;
	background: #fff;
	/* box-shadow: 0 2px 5px #ccc;  */
}

input {
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	vertical-align: middle;
}

input:hover, textarea:hover {
	outline: none;
	border: 1px solid #095484;
}

th, td {
	width: 28%;
	padding: 15px 0;
	/* border-bottom: 1px solid #ccc; */
	text-align: center;
	vertical-align: unset;
	line-height: 18px;
	font-weight: 400;
	word-break: break-all;
}

.first-col {
	width: 15%;
	text-align: left;
}

textarea:hover {
	outline: none;
	border: 1px solid #1c87c9;
}

table {
	width: 100%;
}

textarea {
	width: calc(100% - 6px);
}

.question {
	padding: 15px 0 5px;
	width: 25%;
	color: #095484;
}

.question-answer {
	width: 100%;
	display: inline;
}

.btn-block {
	margin-top: 20px;
	margin-bottom: 30px;
	text-align: left;
}

button {
	width: 150px;
	padding: 10px;
	border: none;
	background-color: #ff3c20;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

button:hover {
	background-color: #573071;
}

button:disabled {
	background-color: #ffb0a4;
}

button:disabled:hover {
	cursor: default;
}

@media (min-width: 568px) {
	th, td {
			word-break: keep-all;
	}
}

input {
	height: 40px;
	border: none;
	border-bottom: 2px solid #d6d6d6;
	border-radius: 0;
	background-color: #f6f6f6;
	padding-left: 10px;
}

input:hover {
	border: none;
	border-bottom: 2px solid #d6d6d6;
}

input:focus {
	border: none;
	border-bottom: 2px solid red;
}

select {
	height: 45px;
}

input[type="file"] {
	border: none;
	background-color: white;
}

input[type="radio"] {
	/* Reset browser differences */
	all: unset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	/* Consistent size & shape */
	width: 20px;
	height: 20px;
	border: 2px solid #555;
	border-radius: 50%;
	background-color: white;

	/* Proper alignment inside flex or inline */
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 0;
}

input[type="radio"]:checked {
	/* Fill center for checked state */
	background: radial-gradient(circle, red 50%, transparent 50%);
	border-color: red;
}
  
