body{
    background: url('../images/login_background_2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */

}

.login-section{
    background-color: #fff;
    height: 80vh;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 25px;
    box-shadow: 0 0 20px #00000047;
    display: flex;
    justify-content: space-evenly;

}

.login-section div{
    width: 50%;
    
}

.login-image{
    border-radius: 25px 0 0 25px;
    background: url('../images/login2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}


.login-form h1{

    font-size: 30px;
    text-align: center;
    margin: 120px 0 50px 0;
    font-weight: 900;
    color: #5215af;
    font-family: 'Courier New', Courier, monospace;
}

.login-form input{
    box-shadow: 0 0 15px #00000042;
    padding: 15px 20px;
    border-radius: 25px;   
    outline: none;
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 30px;
    width: 80%;
    margin-left: 30px;

}

.login-form label{
    margin-left: 35px;
}

.login-form button{
    box-shadow: 0 0 15px #00000042;
    padding: 15px 20px;
    border-radius: 25px;   
    outline: none;
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    background-color: #5215af;
    width: 40%;
    margin-left: 30px;
    cursor: pointer;
}
.login-form button:hover{
    background-color: #410896;
}
.login-form form{
    display: flex;
    flex-direction: column;

}