﻿.body_container {
    background-color: #fff;
    border-radius: .2rem;
    background-image: url('images/bg.jpg');
    height: 100vh;
}

.login_head h2 {
    font-weight: 600;
    padding: 1rem 0;
    background-color: #0066ff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    margin-top: 0;
    margin-bottom: 2rem;
}

.login_body{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.parent_section {
    width: 40%;
    min-width: 35%;
}

.parent_section h2 {
    font-weight: 600;
    margin: 0;
}

.parent_section p {
    font-size: 2rem;
    font-weight: 500;
    color: #0066ff;
}

.parentChild_img {
    width: 100%;
    height: 40rem;
    background-image: url(../img/ParentWithChild.png);
    background-repeat: no-repeat, repeat;
    background-position: center;
    background-size: cover;
}

/*-------------------------- login_section --------------------------*/
.login_section {
    width: 40%;
    min-width: 35%;
}

.para1{
    font-size: 1.5rem;
    font-weight: 500;
}


/*---------- Download Mobile app ----------*/
.mobile_apps {
    border-top: .1rem solid rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 5rem;
}

.mobile_apps span{
    background-color: white;
    padding: 0 1rem;
    margin: 0;
    color: #808080;
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    top: -15%;
    right: 40%;
    
}

.apps_btn a {
    margin: 0 1rem;
    width: 18rem;
    height: 5rem;
    border-radius: .3rem;
    background-repeat: no-repeat, repeat;
    background-position: center;
    background-size: cover;
}

.apps_btn .play_store {
    background-image: url("../img/app.png");
}

.apps_btn .app_store {
    background-image: url("../img/appStore.png");
}

/*------------------------------- The Modal -------------------------------*/
.modal-content{
    border-radius: .2;
}

.modal-header {
    padding: 1rem 1rem;
}

.modal-header h4{
    color: #0066ff;
}

#jsonTable td {
    border-top: none;
}

#jsonTable td {
    border: .1rem solid #E5E4E2;
}

.modal-header .close {
    padding: .3rem 2rem;
    margin-top: 0;
}

.modal-footer{
    justify-content: center;
}

.modal-footer{
    padding: 1rem 0;
}

.modal-footer button{
    padding: .5rem 5rem;
}

/*------------------------------- Mobile View -------------------------------*/
@media screen and (max-width: 540px) {
    .login_head h2 {
        font-size: 2rem;
    }

    .login_body {
        display: block;
        padding: 0 2rem;
    }

    .parent_section {
        width: 100%;
        min-width: 0;
    }

    .login_section {
        width: 100%;
        min-width: 0;
    }

    .parent_section h2 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .parent_section p {
        font-size: 1.8rem;
    }

    .parentChild_img {
        display: none;
    }

    .mobile_apps span {
        right: 35%;
    }

    .apps_btn a {
        width: 10rem;
        height: 3rem;
        margin-bottom: 2rem;
    }

}

/*------------------------------- Ipad View -------------------------------*/
@media screen and (max-width: 820px) {
    .parentChild_img {
        height: 30rem;
    }

    .mobile_apps span {
        right: 34%;
    }

    .apps_btn a {
        width: 10rem;
        height: 3rem;
    }
}