*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mobile{
    display: none;
}
.lscreen{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:100vh;
}
@media(max-width: 520px){
    .lscreen{
        display: none;
    }
    .mobile{
        display: block;
    }
    body{
        font-family: 'Source Sans Pro', sans-serif;            
        background: linear-gradient(to bottom, rgb(4 26 40 / 83%), rgb(3 8 20 / 81%)), url(../design/bgrain.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
    .title{
        text-align: center;
        font-size: 34px;
        font-weight: 600;
        color: #b6bf96e3;
        padding: 10px;
        margin-top: 40px;
        font-style: oblique;
    }
    .maindiv{
        width: 90%;
        margin: 25px auto;
        max-width: 380px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 9px;
        background-color: #f2d3d354;
    }
    .maindiv a img{
        max-width: 160px;
        display: block;
        margin: auto;
    }
    .sideimg{
        width: 100%;
        border-radius: 9px 9px 0 0;
    }
    .innerdiv{
        padding: 20px;
    }
    .innerdiv .logimg{
        width: 100%;
        margin: 25px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .innerdiv .logimg .leftlogo{
        width: 150px;
        line-height: 30px;
    }
    .innerdiv .logimg .rightlogo{
        width: 40px;
        height: 40px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 30px;
        padding: 5px;
        
    }
    form label{
        color: #ed9cab;
    }
    form .userstyle{
        width: 100%;
        outline: none;
        border: none;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        padding: 16px;
        margin: 10px 0;
        border-radius: 4px;
        margin-bottom: 25px;
    }
    form .usercolor{
        background: linear-gradient(to top right, #000066 0%, #3366ff 100%);
        color: white;
        font-weight: 600;
        border-radius: 30px;
        margin: 20px auto;
        display: block;
        letter-spacing: 8px;
        text-transform: uppercase;
        
    }
    form p{
        text-align: center;
        font-size: .85rem;
        margin: 10px;
        color: #b2b2c0;
    }
    form p a{
        color: #adad08;
        letter-spacing: 1px;
    }
    form .create_account{
        background: linear-gradient(to top right, #660066 0%, #9900cc 100%);
        display: inline-block;
        padding: 3px 5px;
        border-radius: 2px;
        color: yellow;
        font-weight: 400;
        font-size: .70rem;
    
    }
    .register{
        text-align: center;
        color: white;
    }
    .register a{
        color: yellow;
    }
}















