/*-- main --*/
.form-wrapper {
    width: 36%;
    margin: 1.5em auto;
}
.form-group {
    margin-bottom: 1em;
    position: relative;
}
.form-group-title {
	margin-bottom: 5px;
	position: relative;
	text-align: left;
}
.form-group .form-control{
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #00bcd4;
    border-radius: 4px;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.submit input[type="submit"] {
    display: block;
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.4em;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #000;
    padding: 0.8em 0;
    background-color: #00bcd4;
    color: #000;
    font-weight: 500;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}
.submit input[type="submit"]:hover {
    background-color: #6fd653;
}
.submit input[type="submit"].disabled {
	background-color: #999999; 
}
.form-control::-moz-placeholder{color:#999;opacity:1}
.form-control:-ms-input-placeholder{color:#999}
.form-control::-webkit-input-placeholder{color:#999}

.form-control.file{
    padding: 6px 12px;
    height: auto;
}

p.statusMsg{
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: left;
    font-size: 14px;
}
p.succdiv{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
p.errordiv{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/*-- responsive-design --*/
@media(max-width:1440px){
.form-wrapper {
    width: 39%; 
}
}
@media(max-width:1366px){
.form-wrapper {
    width: 41%;
}
} 
@media(max-width:1080px){
.form-wrapper {
    width: 47%;
}
}
@media(max-width:991px){
.form-wrapper {
    width: 51%;
}
}
@media(max-width:800px){
.form-wrapper {
    width: 56%;
	margin: 3em auto;
}
}  
@media(max-width:667px){
.form-wrapper {
    width: 66%; 
}
}
@media(max-width:667px){
.form-wrapper {
    width: 71%;
}
}
@media(max-width:568px){
.submit input[type="submit"] { 
    padding: 1.2em 0; 
}

.form-wrapper {
    width: 74%;
}
}
@media(max-width:480px){
h1 {
    font-size: 2em;
}
.form-wrapper {
    width: 81%;
}

}
@media(max-width:414px){

.form-group.submit {
    margin: 1.5em -1.5em 0;
}
.submit input[type="submit"] {
    padding: 1em 0;
}
.form-wrapper {
    width: 86%;
}
} 
@media(max-width:320px){

.form-wrapper {
    width: 96%;
    margin: 1.5em auto;
} 
.submit input[type="submit"] { 
    font-size: 16px; 
}
.form-group {
    margin-bottom: 1em;
}

}
/*-- //responsive-design --*/