* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;

}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    overflow-x: hidden;

}

/* login page css start */
.login-page {
    background-color: #f5f6f7;
    min-height: 100vh;
    height: auto;
}

.login-wrapper {
    background-image: url('/static/img/l3.jpg');
    border: 2px solid rgb(231, 231, 231);
    border-radius: 10px;
    padding: 6.5rem;
    display: flex !important;
    justify-content: center !important;
}


.user-social-link {
    width: 100%;
    text-align: center;
}

.user-social-link .facebook {
    background-color: #3b5998;
    color: white;
    font-size: 1.1rem;
    width: 70%;
    margin-top: 1rem;
}

.user-social-link .twitter {
    background-color: #00acee;
    color: white;
    font-size: 1.1rem;
    width: 70%;
    margin-top: 1rem;
}

.user-social-link .google {
    background-color: #E60023;
    color: white;
    font-size: 1.1rem;
    width: 70%;
    margin-top: 1rem;
}

.divider {
    width: auto;
}

.user-divider {
    width: 1px;
    height: 240px;
   background: rgb(185, 185, 185);
    position: relative;
    z-index: 1;

}

.user-form {
    margin-top: 1rem;
}

.user-form .input-box {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: aliceblue;
    border-radius: 26px;
    text-align: center;
}


.form-content {
    width: 80%;
}

.user-form p a {
    color: #119744;
    background: white;
    font-weight: 700;
}

.click-form {
    margin-top: 3rem;
}

.form-line {
    background-color: white;
    border-radius: 10px;
    border: 2px solid rgb(231, 231, 231);
    padding: 1rem;
}

.form-line p a {
    color: #119744;
    font-weight: 700;
}
.user-form p a:hover{
    border-bottom: 2px solid green;
}
.form-line p a:hover{
    border-bottom: 2px solid green;
}

@media only screen and (max-width:992px) {
    .user-social-link .facebook {
        width: 100%;

    }

    .user-social-link .twitter {
        width: 100%;

    }

    .user-social-link .google {
        width: 100%;
    }

    .user-divider {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 200px;
        height: 1px;
        margin: 2rem;
        background: black;
        position: relative;
        padding: 4.5rem;
        z-index: 1;

    }
    .login-wrapper {
        
        padding: 4rem;
        

    }

    .form-content {
        width: 100%;
    }
}
@media only screen and (max-width:330px){
    .login-img img{
        width:200px
    }
    .login-logo img{
        width: 200px;
    }
}

/* login page css end */