* {
    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;
}

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

.register-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 .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;
}

.user-form a {
    text-align: center;
    background-color: #119744;
    color: white;
    width: 100%;
    font-size: 1.1rem;
}
.term{
    background-color: white !important;
    color: #0d6efd !important;

}

.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;
}
.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;
        z-index: 1;

    }

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

/* register page css end */