*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins";
    background-color: #e8e8e8;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape-1{
    width: 1000px;
    height: 1000px;
    float: right;
    position: fixed;
    background-image: linear-gradient(-45deg, #1e6df5 0%, #add6e4 100%);
    z-index: -1;
    border-radius: 100%;
    left: -9rem;
    top: 54%;
    transform: translateY(-38%);
    animation-name: shape;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes shape{
    0%{
        right: -1000rem;
        top: 1650%;
    }
    100%{
        right: -9rem;
        top: 54%;
    }
}

.login-page{
    width: 90%;
    max-width: 1000px;
    display: flex;
    height: 80%;
    align-items: center;
    border-radius: 30px;
    border: 2px solid #fff;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(22px);

}

.login-page form{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction:column ;
}

@media  screen and (max-width: 1308px){
    .shape-1{
        height: 800px;
        width: 800px;
        transform: translateY(-22%);
    }
}
@media  screen and (max-width: 760px){
    .shape-1{
            height: 700px;
            width: 700px;
            transform: translateY(-5%);
    }

    .form-group{
        width: 80%;
    }
}

@media  screen and (max-width: 575px){
    .title{
        font-size: 26px;
    }
    
    .form-group{
        width: 80%;
    }

    .button-form{
        width: 80%;
    }

    .link-form a{
        font-size: 14px;
    }

    .shape-1 {
        height: 500px;
        width: 500px;
        transform: translateY(15%);
    }
}

@media  screen and (max-width: 437px){
    .img{
        display: none;
        width: 0%;
    }

    .form-img{
        width: 0%;
        display: none;
    }

    .login-page form{
        width: 100%;
    }

    .link-form a{
        font-size: 10px;
    }

    .shape-1 {
        height: 400px;
        width: 400px;
        transform: translateY(-250%);
    }
}



