* {
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  height: 85vh;
  align-items: center;
}

.container {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formDesign {
    touch-action: none;
    margin-bottom: 0.7em;
    outline: none;
    height: 2.5em;
    padding-left: 0.5em;
    border-radius: 10px;
    border: 2px solid #F7C600;
}

.submitButton {
    outline: none;
    height: 2.5em;
    border-radius: 10px;
    border: 2px solid #F7C600;
    background: none;
}

.submitButton:active {
    background: #F5F5F5;
}


.containerSingle {
    width: 100%;
    text-align: left;
}

.error {
    font-size: 130%;
    font-weight: bold;
    color: red;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 750px){
	.container{
		width: 70%;
	}
}