@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*,html,body{
    margin: 0;
    padding: 0;
}

.indexbdy{
    font-family: poppins,sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right,#0466c8,#0353a4,#001845);
    }

    .indexpg{
        width: 50vw;
        height: 70vh;
        background: lightblue;
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: "login";
        box-shadow:0 0 17px 10px rgb(0 0 0 /30%);
        border-radius: 20px;
        background: white;
        overflow: hidden;
    
    }

*{
    margin: 0;
    padding: 0;
    outline: 0;
    appearance:none;
    border:0;
    text-decoration: none;
    list-style: none;
    box-sizing:border-box;
}

html{
    font-size:14px;
}
.design{
    grid-area: design;
    display: none;
    position: relative;
}
.rotate-45 {
    transform: rotate(-45deg);
}
.design .pill-1{
    bottom: 0;
    left: -35px;
    position: absolute;
    width: 60px;
    height: 180px;
    background: linear-gradient(#0466c8,#0353a4,#001845);
    border-radius: 40px;
}
.design .pill-2{
    top: -280px;
    left: -140px;
    position: absolute;
    height: 650px;
    width: 170px;
    background: linear-gradient(#0466c8,#0353a4,#001845);
    border-radius: 200px;
    border:15px solid #9dbffb;
}

.design .pill-3{
    top: -240px;
    left: -10px;
    position: absolute;
    height: 400px;
    width: 60px;
    background: linear-gradient(#0466c8,#0353a4,#001845);
    border-radius: 70px;
    
    }

.design .pill-4{
    bottom: -10px;
    left: -220px;
    position: absolute;
    height: 300px;
    width: 120px;
    background: linear-gradient(#ff966d,#ffd66d);
    border-radius: 70px;
        }

.text-input{
    background: #e6e6e6;
    height: 40px;
    width: 75%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0 15px;
    margin: 5px 0;
}

.logosimg{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

.text-input input{
background:none;
border: none;
outline: none;
width: 100%;
height: 100%;
margin-left: 10px;

}

.text-input{
    color: #686868;
}
::placeholder{
    color: #9a9a9a;
}

.login{
grid-area: login;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.login h3.title{
    margin: 15px 0;
}

.login-btn{
    width: 30%;
    padding: 10px;
    color: white;
    background: linear-gradient(#0466c8,#0353a4,#001845);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;

}
@media (min-width:768px){
    .indexpg {
        grid-template-columns: 50% 50%;
        grid-template-areas: "design login";
    }
    .design{
        display: block;
    }
}
