html {
    overflow-x: hidden;
}

body {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
}

a {
    text-decoration: none!important;
    color: #666;
}

.parent-con {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.right-con {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-con {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-con > * {
    text-align: center;
    margin-top: 20px;
}

.right-con > * {
    margin-top: 30px;
}

.right-con > h2 {
    margin-right: 40%;
}

.left-con > .text-con {
    width: 60%;
    text-align: center;
    margin-left: 10%;
}

.right-con > .text-con {
    width: 60%;
    text-align: center;
}

 .input-field {
     text-align: left;
     width: 70%;
 }

 .right-con > a {
     font-size: 16px;
     text-align: left;
 }

.footer {
    background-color: rgba(248, 250, 252, 1) !important;
    width: 100vw;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup {
    width: 210px;
    height: 390px;
    margin-left: 25%;
}

.banner {
    width: 380px;
    height: 100px;
    margin-left: 15%;
}

.input-field-mobile {
    display: none;
}

/* Disable desktop view and enable mobile view */
@media only screen and (max-width: 900px) {
	.desktopView {
		display: none;
	}
	
	.mobileView {
		display: initial;
	}

    .parent-con {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: unset;
        justify-content: center;
    }
    
    .right-con {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .left-con {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .left-con > * {
        text-align: center;
        margin-top: 0px;
    }
    
    .right-con > * {
        margin-top: 0px;
    }
    
    .right-con > h2 {
        margin-right: 0%;
    }
    
    .left-con > .text-con {
        width: 100%;
        text-align: center;
        margin-left: 0%;
    }
    
    .right-con > .text-con {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
     .input-field-mobile {
         display: initial;
         text-align: center;
         width: 80%;
         display: block;
         margin: 0 auto;
     }
    
     .right-con > a {
         font-size: 20px;
         text-align: center;
     }
    
    .footer {
        background-color: rgba(248, 250, 252, 1) !important;
        width: 100vw;
        height: 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mockup {
        width: 210px;
        height: 390px;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .banner {
        width: 380px;
        height: 100px;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
}

/* Disable mobile view and enable desktop view */
@media only screen and (min-width: 900px) {
	.mobileView {
		display: none;
	}
	
	.desktopView {
		display: initial;
	}
}
