.loginRow {
    display: flex; flex-wrap: nowrap; margin-right: -14px; margin-left: -14px; text-align: center;
}

.customInput{
    border: 1px solid #e4e4e4;
    height: 66px;
    width: 100%;
    border-radius: 8px;
    /* max-width: 300px; */
}

.bodyLogin{
    margin: auto auto; 
    width: 100%; 
    /* padding: 1rem 3.5rem;  */
    max-width: 524px;
}

.btn-login{
    height: 60px;
    font-weight: 500;
}

.btn-signup{
    background-color: #effff0;
    border: 1px solid #43A047;
    height: 60px;
    color: #43A047 !important;
    font-size: 16px;
    font-weight: 500;
}
.btn-signup:active{
    
    color: #fff !important;
}
.btn-signup:hover{
    background-color: #effff0;
    border: 1px solid #43A047;
}

.footerSection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .bodyLogin {
        padding: 0px 1rem;
        max-width: 100%;
        margin: 0px;
    }

    .footerSection{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    
}

@media screen and (min-width:992px) and (max-width:1240px) {
     .bodyLogin {
        padding: 0px 0px 0px 2rem;
       
    }
}

