@import url('https://fonts.googleapis.com/css2?family=Acme&family=Handjet&family=Inconsolata&family=Inter&family=Noto+Sans:wght@400;700&family=Roboto+Mono:ital@1&display=swap');


 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Acme';
}



main{
    border:1px solid rgba(0, 0, 0, 0.301);
    width: 100vw;
    height: 100vh;
    background: rgb(146,54,150);
background: linear-gradient(90deg, rgba(146,54,150,1) 0%, rgba(100,65,165,1) 22%, rgba(123,60,158,1) 100%, rgba(125,3,166,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

img{
    width: 25%;
}

form > h1{
    color:#6441a5; 
}

form{

    background: #f3f3f3;
    width:  40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 10px #000000;
}

.textfield{

    width: 100%;
    display: flex;
    flex-direction: inline;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    margin: 10px 0px;
}

.textfield > i{
    font-size: 30pt;
    padding-right: 10px;
    color: #6441a5;
    

}

.textfield > input{
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 15px;
    background: #000000;
    color: #f0ffffde;
    font-size: 12pt;
    outline: none;
    border: 2px solid transparent;

}

.textfield > input::placeholder{
    color: #f0ffff;
}

input:focus{
    border-color: #6f00ff;
}


button{
    width: 85%;
    align-items: center;
    text-align: center;
    border: none;
    border-radius: 20px;
    padding: 10px;
    color: #f3f3f3;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.356);
    font-size: 12pt;
    outline: none;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-weight: 800%;
    letter-spacing: 3px;
    cursor: pointer;
    background: black;
}

button:hover{
    background: rgb(146,54,150);
    background: linear-gradient(90deg, rgba(146,54,150,1) 0%, rgba(100,65,165,1) 22%, rgba(123,60,158,1) 100%, rgba(125,3,166,1) 100%);
    box-shadow: 0px 0px 20px 10px #6441a5;
    letter-spacing: 8px;

}

