/* body {
    background-color: #5669E2;
} */

body {
    /* background-image: linear-gradient(to right, #5669E2, #981CEB); */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    margin-bottom: 0px;
}

.page-content {
    margin: auto;
    
}

.page-header {
    margin-left: 80px;
    margin-top: 20px;
    font-size: 40px;
    font-weight: 100;
    display: flex;
} 
.page-header h1 {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    margin-top: 0px;
    padding-left: 5px;
}

.page-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-self: center;
    /* margin-bottom: 30px; */
}

.maincontaint {
    /* position: absolute;
    top: 200px;
    left: 150px; */
}

.maincontaint h1 {
    color: #383CC1;
    font-family: 'Poppins', sans-serif;
}
.maincontaint p {
    font-family:'Poppins', sans-serif;
    padding-left: 5px;
}


.warning {
    font-size: 10px;
    color: #BF3325;
}

.emailInput {
height: 25px;
width: 250px;
border-radius: 5px;
}


input {
    height: 40px;
    font-family: inherit;
    border: 1px solid #5669E2;
    color: #5669E2;
    font-size: 1rem;
    margin-left: 5px;
  }

  input:focus, textarea:focus, select:focus{
    outline: none;
}

.input[type="email"] {
    outline: none; 
    outline-color: #5669E2;
    width: 100%;
    padding: 0 1.6rem;
    border-radius: 5px;
    appearance: none;
    transition: all .3s cubic-bezier(0, 0, 0.43, 1.49);
    transition-property: width, border-radius;
    z-index: 1;
    position: relative;
    color: #5669E2;
  }

.submitBtn {
    height: 30px;
    width: 80px;
    border-radius: 5px;
    border: 1px solid #383CC1;
    background-color: #383CC1;
    color: white;
}

.submitBtn:hover {
    cursor: pointer;
    background-color: #083258;
    border: 1px solid #083258;
}


.appScreenShot {
    width: 250px;
    height: 450px;
    /* position: absolute;
    top: 100px;
    right: 120px; */
    z-index: 400;
margin-right: 90px;
}



#successMsg {
    font-size: 15px;
    color: #383CC1;
}



.brandlogo {
    height: 50px;
    width: 60px;
    border-radius: 5px;
}


.svgcontainer {
    position:absolute;
    /* top:0; */
    right: 0;
    bottom: -20px;
    left:0;

  /* background-position:  right bottom; */
}


.appScreenShotForMobile {
    display: none;
}



@media only screen and (max-width: 1200px) {
    .appScreenShot{
        
        margin-right: 0px;
    }
} 


@media only screen and (max-width: 768px) {
    .appScreenShot{
        /* top: 150px;
        right: 10px; */
        width: 250px;
        margin-right: 0px;
    }
   
    .maincontaint h1 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .appScreenShot{
        /* top: 150px;
        right: 10px; */
        width: 250px;
        /* height: 500px; */
        display: none;
    }
    .maincontaint {
        margin-bottom: 30px;
    }
    .maincontaint h1 {
        font-size: 20px;
        margin-left: 25px;
    }

    .maincontaint p {
        margin-left: 25px;
    }

    .page-header {

        margin-left: 10px;
        margin-top: 10px;
        font-size: 20px;
        font-weight: 100;
        display: flex;
    } 
    .emailInput {
        width: unset;
        margin-left: 25px;
        }

        .page-header {
            margin-left: 60px;
        }

    .appScreenShotForMobile {
        display: block;
        width: 300px;
        height: 600px;
    }
    .page-content {
        display: flex;
        flex-direction: column;
    }
    body {
        overflow: scroll;
    }
    .svgcontainer{
        display: none;
    }
}