*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
	padding: 0;
	background-color: #ffffff;
}

/* Logo */
.main_logo > img { width: 170px; }
.header_logo { width: 190px; }
.small_logo { width: 41px; }
.nav_logo > img { width: 190px; }

/* Content */
.wrapper-page {
	margin: 4% auto;
	max-width: 32%;
}

.content-page {
	position: relative;
    margin-top: 70px;
	margin-left: 40px;
	overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}

.content-page.active { margin-left: 240px; }

.content-page .content {
	padding: 0 15px 10px 15px;
	margin-top: 20px;
	margin-bottom: 60px
}

/* Title */
.h2-title > h2 {
	font-size: 35px;
    font-weight: 700;
    color: #fff;
    padding-right: 25px;
}

.header-title {
	font-size: 19px;
	font-weight: 800;
	display: inline-block;
	color: #333;
	padding-bottom: 20px;
}

.lbl_title {
	font-weight: 600;
	padding-bottom: 5px;
	font-size: 16px;
}

/* Images */
.h2-title > img {
    width: 140px;
    padding-right: 25px;
}

/* Button */
.btn {
	background-image: linear-gradient(to right top, #1fc8f3, #00bbf8, #00adfc, #009dfd, #238cf9);
	border:0;
	color: #fff;
	font-weight: 600;
}

.back-btn > img {
    width: 25px;
    margin-top: 7px;
}

/*  Inputs  */
.input_heading > label {
	font-weight: 700;
	font-size: 16px;
}

.input {
    background: #fafcff;
    border: 1px solid #deebf8;
    width: 100%;
}

/* Mobile Size */
@media(min-width:0px) and (max-width:640px) {
	.wrapper-page {
        margin: 0% auto;
        max-width: 100vh;
    }

    .content-page { 
        margin-left: 0px; 
        z-index: -1; 
    }

	.content-page.active { margin-left: 0px;}
}

/* Tablet Size */
@media(min-width:641px) and (max-width:1007px) {
    .wrapper-page { max-width: 50%; }
}