*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Poppins',sans-serif;
}

.container{
    display:grid;
    grid-template-columns: 50% 50%;
}

.firstimg img{
	height: 100vh;
    width: 100%;
}

.login_content{
    align-items: center;
    text-align: center;
    width: 100%
}

form{
    margin-top: 5%;
    width: 50%;
    margin: auto;
}

form .main_logo{
    height: 70px;
    width: 70px;
    margin-top: 25%;
}

form .logo_name img{
    height: 60px;
    width: 150px;
    margin-top: 1%;
}

form .title{
    margin-top: 8%;
    margin-bottom: 14%;
}

.input_div > div{
    position: relative;
    height: 45px;
}

.input{
    width: 100%;
    height: 38px;
    background: #FFFFFF;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-radius: 5px;
    padding-left: 10px;
}

a{
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 0.9rem;
    transition: .3s;
    margin-top: 2%;
    float: right;
    text-decoration: underline;
}
a:hover{
    color: blue;
}
.btn{
    width: 100%;
    margin-top: 10%;
    height: 38px;
    border-radius: 10px;
    border: none;
    background-color: #FF9900;
    font-size: 20px;
    color: white;
    font-weight: 600;
}

@media (max-width: 950px){
    .container{
        display:grid;
        grid-template-columns: 100%;
    }   
    .firstimg{
        display: none;
    }
}