.full_page{
    width: 100%;
    height: 100vh;
    z-index: 1;
    background-color: whitesmoke;
    position: fixed;
    left: 0;
    top: 0;
}

.layout_login{
    display: grid;
    grid-template-columns: 65% 35%;
    width: 100%;
    height: 100vh;
}

.bg_left{
    position: fixed;
    top: 0;
    left: 0;
    background-image: url('resources/img/red_fruit_bg.jpg?i=1'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; /* Or any desired height */
    z-index: 0;
   
}

.bg_right{ 
    position: fixed;
    top: 0;
    left: calc(50% - 300px);
    width: 600px;
    z-index: 2;
    /* background-color: #f2f2f2; */
     background-image: url('resources/img/tr-w.png'); 
    padding: 15px;
    height:auto;
    
    margin-top: 10vh;
    border-radius: 20px;
}

.input_box
{
    width: 100%;  
    background: #f2f2f2;
    border: none;  
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    font-size: 18px;
    color: #494949;
   
}
.solgan{
    padding: 5px;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .layout_login{
        grid-template-columns: 0 100%;
        width: 100%;
        height: 100vh;
        max-width: 800px;
    }
    
.bg_right{ height: 100vh;width: 100%;top: 0;left: 0;margin-top: 0;border-radius: 0;overflow: auto;}

  }


