*, *:before, *:after {
    box-sizing: border-box;
}
.loginwrap{
	background: #ffffff;
    padding: 40px 50px;
    width: 38%;
    margin: 100px auto 20px auto;
    border-radius: 10px;
}
.logo{
	text-align: center;
}
.logo img{
	width: 225px;
}
.mynav{
	padding: 0;
    list-style: none;
    text-align: center;
}
.mynav li{
	display: inline-block;
}
.mynav li a{
	display: block;
    text-decoration: none;
    padding: 15px;
    margin: 0 10px;
    color: #212121;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    position: relative;
}
.mynav li a:after{
	position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a0da4f;
    content: '';
    opacity: 1;
    transition: all .20s ease-in-out;
}
.mynav li:hover a:after, .mynav li.active a:after{
	width: 100%;
}
.field{
	margin: 25px 0;
}
.field p{
	font-size: 16px;
    font-weight: 500;
    color: #212121;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 5px 0;
}
.field select, .field input{
	padding: 5px;
	width: 95%;
	border-bottom: 2px solid #a0da4f;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #212121;
	text-align: left;
	outline: none;
	letter-spacing: 0.5px;
	font-size: 16px;
	font-family: 'Poiret One', cursive;
	background: #efefef;
}
.field input[type="checkbox"]{
	width: auto;
}
.field .loginbtn{
	text-decoration: none;
    padding: 10px 0;
    text-align: center;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    width: 100%;
    color: #212121;
    background-color: #a0da4f;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.field span.term{
	color: #4b900e;
    text-decoration: underline;
    line-height: 25px;
}
.field .loginbtn:hover, .field .loginbtn:focus{
	background: #E56D76;
}
.field .forget{color: #4c4c4c;}
 




@media (max-width: 1300px){
	.loginwrap{
		width: 50%;
	}
}
@media (max-width: 991px){
	.loginwrap{
		width: 60%;
	}
}
@media (max-width: 767px){
	.loginwrap{
		width: 80%;
	}
}