@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    padding:0px;
    margin:0px;
    border:none;
    outline:none;
    position: relative;
    box-sizing:border-box;
    text-decoration: none;
    list-style: none;
    
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: "Nunito", sans-serif;
    background-image: linear-gradient(rgba(185, 146, 200, 0.811) ,rgba(239, 178, 245, 0.345) );
    background-repeat: no-repeat;
}


section{
    display: flex;
    justify-content: center;
    align-items: center;
   
    gap: 35px;
    padding: 50px;
    width: 90%;
    height: 50%;
    margin:auto;
}
input{
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid blueviolet;
    padding: 8px ;
    border-radius: 5px;
    width: 300px;
}
input:hover{
    border: 2px solid rgb(58, 11, 102);
}
button{
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid blueviolet;
    background-color: rgb(137, 43, 226);
    color: white;
    
}
button:hover{
    background-color: rgba(137, 43, 226, 0);
    border: 2px solid blueviolet;
   color: rgb(8, 6, 6);

}