body {
    margin: 0px;

    color: white;
    font-family: Arial;
}
.hello {
    height: 100vh;
    width: 100vw;
    /*background-image: url('{{asset("assets/media/auth/bg1.jpeg")}}');*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100% 100vh;
}

div #eyediv:hover{
    color:red;
}

::placeholder {
    color: white;
} 

.login_module_center {
    padding: 2rem;
    background: #0a0f12;
    border-radius: 1.5rem;
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    width: 70%;
}

.login_module_center_part1 {
    width: 50%;
    padding: 3rem 0.5rem;
    text-align: center;
}
.login_module_center_part1 img {
    height: 300px;
    object-fit: contain;
    width: 100%;
}
.login_module_center_part2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    width: 40%;
}
.login_module_center_part2 input {
    padding: 1rem 1rem;
    padding-left: 2.5rem;
    border-radius: 30px;
    background: #666666;
    color: white;
    border: hidden;
    width: 300px;
}

#hide_pass , #show_pass {
    cursor: pointer !important;
}

.login_module_center_part2_btn {
    padding: 0.8rem 1rem;
    border-radius: 30px;
    background: #d25d25 !important;
    color: white;
    border: hidden;
    font-size: 18px;
    cursor: pointer;
    width: 356px;
}

@media only screen and (max-width: 1000px) {
    .hello {
        background-image: url('{{asset("assets/media/auth/bg2.jpeg")}}');
    }
    .login_module_center{
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    .login_module_center_part1{
        padding: 0px;
        width: 100%;
    }
    .login_module_center_part2{
        width: 100%;
        margin-bottom: 100px;
    }
    .login_module_center_part1 img{
        height: 300px;
        width:  300px;
    }
}
@media only screen and (max-width: 600px) {
    .login_module_center {
        flex-direction: column;
    }
}
@media only screen and (max-width: 400px) {
    .login_module_center_part1 img{
        height: 250px;
        width:  250px;
    }
}
