body {
    font-family: 'Montserrat', sans-serif !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.loginDiv {
    width: 350px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    text-align: center;
}

/* .imgDiv{
    display: flex ;
    align-items: center;
    justify-content: space-between;
} */

.imgLimoog {
    /* height: 45px; */
    padding: 2px;
    margin-top: 26px;
}

.imgDiv img{
    margin-bottom: 20px;
}

.loginDiv form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.loginDiv label {
    margin: 10px 0 5px 0;
    text-align: left;
}

.login,
.pwd {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submit {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #5cb85c;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.submit :hover {
    background-color: #4cae4c;
}

@media (max-width: 1000px) {
    /* smartphone*/
    .loginDiv {
        box-shadow: none;
        background-color: initial;
    }
}
