*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(212, 39, 255);

}
form{
    width: 25rem;
    height: 28rem;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 30px;
    box-shadow: 0 8px 32px 0;
    border-left: 1px solid green;
    border-top: 1px solid green;
}
h1{
    font-size: 50px;
    text-align: center;
    color:blue;
    letter-spacing: 3px;
    margin-bottom: 6%;
    opacity: .7;
}
label{
    font-size: 20px;
    color:brown;
    margin-left: 10%;
    opacity: .8;
}
input{
    width: 80%;
    margin: 7% auto;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid black;
}
button{
    width: 50%;
    margin: 10% auto;
    color: white;
    background-color: grey;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 20px;
    border-left: 2px solid black;
    border-top: 2px solid black;
}
a{
   margin-left: 10%; 
}
button a{
    text-decoration: none;
}