.main-body .container .loginCard{
    margin: auto;
    height: max-content;
    width: max-content;
    box-shadow: var(--shadow);
    padding: 20px;
    transition: height 1.4s;
    border-radius: var(--border-radius);
    background-color: #ffffff;
    max-width: 400px;
}

.loginCard .image{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 3.5rem;
}

.loginCard .image img{
    height: 100px;
    border-radius: 10px;
}
.loginCard .form{
    overflow: hidden;
    height: 100%;
    transition: height 1.4s;
    padding: 0;
}
.loginCard .form .title{
    font-size: clamp(2rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--PrimaryColor);
    padding: 20px 0px;
    text-align: center;
    text-transform: capitalize;
}
.loginCard form button {
    padding: 5px 20px !important;
}
@media (max-width: 768px){
    .loginCard{
        padding-left: 20px !important;
    }
    .loginCard .image{
        height: auto;
        border-right: none;
        padding-bottom: 20px;
    }
    
    .loginCard .image img{
        height: 100px;
        border-radius: 10px;
    }
    .loginCard .form{
        height: auto;
    }
}
