*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.blueviolet_btn{
    margin: 0;
    padding: 5px 10px;
    background-color: blueviolet;
    color: #fff;
    text-decoration: none;
    outline:none;
    border: 1px solid blueviolet;
    transition: 250ms ease-in-out;
}
.blueviolet_btn:hover{
    background-image: linear-gradient(to bottom,violet,blueviolet);
}

section{
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.btn-gradient{
    background-image: linear-gradient(to right bottom, #7d1efd, #a40df2, #c100e6, #d800db, yellow, red);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    background-size: 200% auto; 
    box-shadow: 0px 2px 0px 2px rgb(108, 3, 194);
    transition: 0.5s; 
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
}
.btn-gradient:hover{
    background-position: center; 
    color: white;
}
div input{
    border-radius: 8px;
    border-color: rgb(221, 9, 221);
    padding: 13px;
    width: 300px;
}
#login{
    text-align: center;
    padding: 30px;
    border: none;
    outline: none;
    border-radius: 15px;
}
#wavy_top{
    z-index: -1;
    position: fixed;
    top: -30%;
}
#wavy_bottom{
    position: fixed;
    z-index: -1;
    bottom: -250px;
    transform: rotate(180deg);
}
#right_squre1{
    background-color: #b400b4b9;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    transform: rotate(38deg);
    position: absolute;
    top: 30px;
    right: -200px;
}
#right_squre2{
    background-color: #b400b4b9;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    transform: rotate(45deg);
    position: absolute;
    top: 30px;
    right: -200px;
}

#left_square1{
    background-color: #b400b4b9;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    transform: rotate(38deg);
    position: absolute;
    bottom: 30px;
    left: -200px;
}
#left_square2{
    background-color: #b400b4b9;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    transform: rotate(45deg);
    position: absolute;
    bottom: 30px;
    left: -200px;
}
a{
    text-decoration: none;
    transition: 250ms;
}
a:hover{
    color: blueviolet;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    #wavy_top{
        top: -30px;
    }
    #wavy_bottom{
        bottom: 0;
        z-index: -1;
    }
    #right_squre1{
        display: none;
    }
    #right_squre2{
        display: none;
    }
    #left_square1{
        display: none;
    }
    #left_square2{
        display: none;
    }
}
