/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
form{
    width :600px;
    background-color: rgb(208, 161, 161);
    margin: auto;
    padding:5%;
    padding-right: 8px;
}

form p {
    margin-top: 10px;

}

.formLabel {
    width: 100px;
    text-align: right;
    padding-right: 5px;
    font-size: 1.2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', 'Sans-serif';
}

input, textarea {
    width: 200px ;
    font-size: 1.2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, Sans-serif;
    border-radius: 5px;
    border: none;
    border-bottom: 5px;
}
.flexForm {
    display: flex;
    align-items: center;
    padding: 15px;
}


input[type=submit] {
    width: 300px;
    font-size: 1.5em;
    color: rgb(205, 100, 100);
}


.submit {
    display: flex;
    justify-content: center;
    text-align: center;
    }

    .flexKYS {
        display: none;
    }

    input:required {
        border: rgb(228, 160, 160) solid 2px;
    }

    input:valid {
        border: rgb(225, 132, 130) solid 1px;
    }
