html{
	box-sizing: border-box;
}
body{
	margin: auto;
	opacity: 1;
	background: #fff;
	height: 100%;
	width: 100%;
	overflow-x: hidden;	
}

body * {
	box-sizing: border-box;
}

#main-content{
	/*border: 2px dashed green;*/
	position: relative;
	clear: both;
	height: auto;
	min-height: calc(100vh - 100px);
	min-height: -webkit-calc(100vh - 100px);
	min-height: -moz-calc(100vh - 100px);
	min-height: -ms-calc(100vh - 100px);
	min-height: -o-calc(100vh -  100px);
	width: 100%;
	clear: both;
	background: #fff;/*%after*/
}
#main-content .content{
    border: 4px solid green;
    border: none;
	min-height: calc(100vh - 100px);
	position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    background: url('pattern.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content .reset-head{
    /* border: 2px solid red; */
    margin-bottom: 20px;
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.reset-head h2{
    font-family: monts_reg;
    font-size: 32px;
	font-weight: normal;
	text-align: center;
    color: #111111;/*209eff*/
}
.content p{
    font-family: monts_reg;
    font-size: 16px;
	font-weight: normal;
	text-align: center;
    color: #111111;	
}

.content .signup-body {
    /* border: 2px solid gold; */
    margin: 0 auto;
    width: 30%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
.signup-body p {
    /* border: 1px dashed red; */
    margin-bottom: 20px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.signup-body .i-field {
    display: block;
    height: 100%;
    width: 100%;
    padding: 10px 10px 10px 5px;
    border: none;
    border-bottom: 1px solid #212529;
    background: none;
    font-family: monts_reg;
    font-size: 15px;
    transition: all 0.45s;
}
.signup-body .reset-btn{
    border: none;
    display: block;
    width: auto;
    height: 100%;
    padding: 0 50px;
	font-family: monts_semi;
	font-size: 16px;
    color: #fff;
    cursor: pointer;
    background: #209eff;
    transition: all 0.5s;
}

@media screen and (max-width: 1150px){
    .content .reset-head{
        margin-top: 60px;
        margin-bottom: 0px;
        width: 60%;
    } 
    .signup-body .reset-btn{
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media screen and (max-width: 800px){
    .content .reset-head{
        margin-top: 100px;
        margin-bottom: 0px;
        width: 90%;
    }    
    .reset-head h2{
        font-size: 28px;
    }
    .content .signup-body{
        width: 90%;
    }
    .signup-body .i-field{
        width: 80%;
    }
    .content > p{
        width: 90%;
    }
}