.container-6{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content:center ;
    align-items: center;
    }
    .container-6 div{
        width: 80%;
        height:100%;
        position: relative;
      display: flex;
      justify-content:center ;
    align-items: center;
    
    }
    .line-back-5{
        position: absolute;
        bottom: 300px;
        left: 350px;
        width: 400px;
        height: 50px;
        transform: rotate(130deg);
        background-color: #ec639f;
        z-index: -2;
        border-radius:50px;
    }
    .line-back-6{
        position: absolute;
        top: 300px;
        left:250px;
        width: 400px;
        border-radius:50px;
        height: 50px;
        transform: rotate(130deg);
        background-color:#ffb644;
        z-index: -2;
    }
    
    .container-6 div form{
       
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all 0.5s;
    }
    .container-6 div form input{
        width: 250px;
        height: 40px;
        margin: 5px;
        border-radius: 5px;
        outline: none;
        border: 2px #FF731D solid;
    }
    .container-6 div form select{
        width: 250px;
        height: 40px;
        border-radius: 5px;
        outline: none;
        border: 2px #40348f solid;
        padding: 10px;
        margin: 5px;
    }
    #signin{
        display: none;
    }
    .container-6 div form h3{
        position: relative;
        
        font-size: 25px;
        opacity: 0.9;
    }
    .container-6 div form button{
        width: 80px;
        height: 35px;
        margin-left:10px;
        border: none;
        background-color:#40348f;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
    }
    .sign{
        width: 60px;
        position: relative;
        top: 0;
        left: 50px;
    
        padding: 10px;
        border-radius: 5px;
        color: #fff;
        text-align: center;
        cursor: pointer;
        background-color: #ffb644;
    }
    #forgetForm{
        width: 300px;
        height: 250px;
        background-color: #ffb644;
        position: absolute;
        top: 200px;
        border-radius: 10px;
        right: 450px;
        border:#40348f 5px solid;
        display: none;
    }
    @media (max-width:  980px) {
        .container-6 div{
            width: 100%;
        }
        .line-back-5{
            width: 300px;
            left: 0px;
            top:270px;
        }
        .line-back-6{
            width: 300px;
            left: 80px;
        }
        #forgetForm{
            top: 150px;
            right:20px;
        }
        #login-btn{
            visibility: visible;
            position: absolute;
            top: -58px;
            left: 270px;
            border-radius: 5px;
        }
    }
