
.designForm {
	margin: 0;
    padding: 0.1em;
    position: relative;

/*    box-shadow: 
        0 0 1px rgba(0, 0, 0, 0.3), 
        0 3px 7px rgba(0, 0, 0, 0.3), 
        inset 0 1px rgba(255,255,255,1),
        inset 0 -3px 2px rgba(0,0,0,0.25);
    border-radius: 5px;
    background: white;
    background: -moz-linear-gradient(#eeefef, #ffffff 10%);
    background: -ms-linear-gradient(#eeefef, #ffffff 10%);
    background: -o-linear-gradient(#eeefef, #ffffff 10%);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eeefef), color-stop(0.1, #ffffff));
    background: -webkit-linear-gradient(#eeefef, #ffffff 10%);
    background: linear-gradient(#eeefef, #ffffff 10%);*/
}

.designForm .field {
    position: relative;
}
.designForm .link {
	padding: 1em 0 0;	
}
.designForm .field i {
    left: 0px;
    top: 0px;
    position: absolute;
    height: 36px;
    width: 36px;

    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);

    color: #777777;
    text-align: center;
    line-height: 36px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    pointer-events: none;
}
.designForm textarea,
.designForm select,
.designForm input[type=text],
.designForm input[type=email],
.designForm input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);

    width: 75%;
    padding: 10px 18px 10px 45px;
	resize:none;

    border: none;
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.1),
        inset 0 3px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
    background: #f9f9f9;
    color: #777;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.designForm select:hover ~i,
.designForm textarea:hover ~ i,
.designForm input[type=text]:hover ~ i,
.designForm input[type=email]:hover ~ i,
.designForm input[type=password]:hover ~ i {
    color: #52cfeb;
}
.designForm select:focus ~ i,
.designForm textarea:focus ~ i,
.designForm input[type=text]:focus ~ i,
.designForm input[type=email]:focus ~ i,
.designForminput[type=password]:focus ~ i {
    color: #42A2BC;
}
.designForm select:focus,
.designForm textarea:focus,
.designForm input[type=text]:focus,
.designForm input[type=email]:focus,
.designForm input[type=password]:focus,
.designForm button[type=submit]:focus {
    outline: none;
}

.designForm input[type=submit] {
	border: 1px solid rgba(204,204,204,0.3);
	padding: 0.5em 1em;
}

.designForm .submit {
    width: 4em;
    height: 4em;
    position: absolute;
    top: 17px;
    right: -25px;
    padding: 10px;
    z-index: 2;

    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 2px rgba(0,0,0,0.1),
        0 3px 2px rgba(0,0,0,0.1),
        inset 0 -3px 2px rgba(0,0,0,0.2);
}

.designForm .submit:after {
    width: 10px;
    height: 10px;
    position: absolute;
    top: -2px;
    left: 30px;

    background: #ffffff;
    
    box-shadow: 0 62px white, -32px 31px white;
}

.designForm button {
    width: 100%;
    height: 100%;
    margin-top: -1px;

    font-size: 1.4em;
    line-height: 1.75;
    color: white;

    border: none;
    border-radius: inherit;
    background: #52cfeb;
    background: -moz-linear-gradient(#52cfeb, #42A2BC);
    background: -ms-linear-gradient(#52cfeb, #42A2BC);
    background: -o-linear-gradient(#52cfeb, #42A2BC);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#52cfeb), to(#42A2BC));
    background: -webkit-linear-gradient(#52cfeb, #42A2BC);
    background: linear-gradient(#52cfeb, #42A2BC);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 1px 2px rgba(0,0,0,0.35),
        inset 0 3px 2px rgba(255,255,255,0.2),
        inset 0 -3px 2px rgba(0,0,0,0.1);

    cursor: pointer;
}
.designForm button:hover,
.designForm button[type=submit]:focus {
    background: #52cfeb;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.designForm button:active {
    background: #42A2BC;
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.3),
        inset 0 3px 4px rgba(0,0,0,0.3);
}
.designForm small , .designForm a , .designForm p{
	color:	#42A2BC;
	text-decoration: none;
}
.designForm a {
	padding-left: 2em;
}
