*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
.login-contener{
    padding: 0 10%;
}

@media (max-width: 1080px) {
    .login-contener{
        padding: 0;
    }
    
}

.login-section{   
    width: 100%;
    background-color: #181717; 
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;   
    background-image: url(../img/Home_img/top.png);
    background-position: center;  
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.login-form-container{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 400px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.login-form{
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
}


.login-title{
    margin: 30px;
    font-weight: 600;
    color: #ffffff;
}

.login-img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 50px;
}

.login-form{
    width: 90%;
}

.login-form input{
    width: 90%;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: rgb(245, 245, 245);
}

.login-form .login-btn{
    margin-top: 20px;
    width: 100%;
    background-color: tomato;
    color: white;
    font-weight: 500;
}

.login-submit-div{
    display: flex;
    justify-content: center;
}

.login-form .login-btn:hover{
    background-color: rgb(242, 84, 56);
    cursor: pointer;
}

.login-forgot-pass a{
    color: aliceblue;
    margin: 20px;
}

.not-membar{
    margin-bottom: 50px;
    color: #f1cf0b;
}

.not-membar a{
    margin-left: 10px;
    color: #ffffff;
}

@media (max-width: 576px) {
    .login-form-container{
        width: 95%;
    }

    .login-title{
        margin: 20px;
        font-weight: 400;        
    }

    .login-img{
        width: 90px;
        height: 90px;
    }
    
    .not-membar {
        font-size: 15px;
    }
}


