* {
	box-sizing: border-box;
}
body {
	background: #383838;
	color: rgb(255, 255, 255);
}
#logo {
	margin: 50px 0;
}
.container {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
h1 {
	text-align: center;
	font-family: "Roboto", sans-serif;
}

form#OnlineAnzahlungSIA {
	max-width: 500px;
	width: 100%;
	font-family: "Roboto", sans-serif;
}
.anzahlung-form-inputs .bh-field {
	width: 100%;
	display: flex;
	align-items: center;
}
.bh-field-anount {
	width: 315px;
	display: flex;
	align-items: center;
}

.anzahlung-form-inputs .bh-field.amount input[name="AMOUNTEURO"] {
	width: 140px;
	text-align: right;
}
.anzahlung-form-inputs .bh-field {
	margin-bottom: 10px;
}
.anzahlung-form-inputs .bh-field span {
	margin-left: 5px;
	margin-right: 10px;
	display: block;
	font-size: 18px;
}
.anzahlung-form-inputs .bh-field.amount input[name="AMOUNTCENT"] {
	width: 80px;
}
form#OnlineAnzahlungSIA label {
	width: 150px;
	text-align: left;
	display: inline-block;
	vertical-align: top;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	margin-bottom: 5px;
}
form input[type="text"] {
	background: rgba(245, 243, 243, 1);
	-webkit-appearance: none;
	font-family: "Roboto", sans-serif;
	background: white;
	border: 1px solid #666;
	border-radius: 3px;
	padding: 0.5rem 1rem;
	width: 315px;
}
form input[type="submit"] {
	-webkit-appearance: none;
	font-family: "Roboto", sans-serif;
	background-color: #ee1c25;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 0.5rem 1rem;
	color: rgb(255, 255, 255);
	width: 100%;
	margin-top: 10px;
	cursor: pointer;
}

@media screen and (max-width: 500px) {
	form#OnlineAnzahlungSIA {
		max-width: 100%;
		padding: 10px;
		box-sizing: border-box;
	}
	.anzahlung-form-inputs .bh-field {
		flex-direction: column;
		align-items: flex-start;
	}
	form input[type="text"] {
		width: 100%;
	}
}
