#signup_pending{
	height: 78vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    .title{
    	font-size: 30px;
    	display: flex;
    	align-items: center;
	    flex-wrap: wrap;
	    justify-content: center;
	    text-align: center;

    	img{
		    width: 25px;
    		margin-right: 15px;
    	}
    }
 
    .content{
    	text-align: center;
    	margin: 30px 0;
	    line-height: 1.8em;
			overflow: inherit;
			margin-bottom: 20px;
    }

    .button{
    	display: inline-block;
	    background: #74b32d;
	    color: #fff;
	    font-size: 17px;
	    font-weight: 500;
	    padding: 0.8em 2em;
	    border-radius: 30px;
	    line-height: 1em;
    }

    @media only screen and (max-width: 992px){
	    padding: 0 7%;

    	.title{
    		flex-flow: column;
    		font-size: 24px;

    		img{
			    margin: 0 0 10px 0;
    		}
    	}

    	.content{
		    font-size: 13px;
    	}

    	.button{
    		font-size: 15px;
    	}
    }
}