/* Project One Placeholder Styles and dirty markup */
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}
a, input {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
html {
    background: url(../img/back.jpg) center center;
  
}
body {
    margin: 0;
    padding: 0;
    /* background: rgba(1, 1, 1, 0.5); */
    font-family: "open-sans", "open sans", arial, sans-serif;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

p {color: #6a6a6a;
	font-size: 16px; line-height: 1.4;
	margin: 0.9275rem;
}
form {
	margin-bottom: 1.8rem;
}
a,
a:visited {
font-size: 14px;
    color: #A51C21;
    text-decoration: none;
}
a:hover,
a:active {
text-decoration: underline;    
}
.hello {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
 img {
    width: 100%;
}

.parent {
    display: table;
    width: 100%;
    max-width: 450px;
    height: 100%;
    margin: 0 auto;
}
.child {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    width: 100%;
    height: 100%;
}

.child .rounded {-webkit-border-radius: 6px;
display: inline-block;
border-radius: 6px;
	background: rgba(255,255,255,0.5);
	padding: 1.8rem;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-size: 14px;
	border: 1px solid #ccc;
	padding: 6px 8px;
	text-align: center;
	margin-bottom:  0.6rem;
	outline: none;
}
input[type="email"] {
	width: 100%;
}
input[type="text"] {float: left;
	width:  calc(50% - 0.3rem);

}

input:focus {
		border: 1px solid #6a6a6a;
	
}
input[type="submit"]:hover  {
background: #A51C21;
color: #fff;	
}


#mce-FNAME {
	margin-right: 0.3rem;

}
#mce-LNAME {
	margin-left: 0.3rem;
}

input[type="submit"] {
	width: 100%;
	cursor: pointer;
}



