*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

html,body{
    background-color: rebeccapurple;
    height: 100%;
}

body > i{
    font-size: 128px;
    color: white;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
}



body > a:hover{
    color: white;
}

form{
    width: 100%;
    max-width: 450px;
    position: relative;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    padding: 0 4%;
}

label{
    /* color: rgb(100,100,100); */
    color: rgb(230, 230, 230);
    margin-bottom: 10px;
    display: inline-block;
    font-size: 18px;
    user-select: none;
    font-weight: 600;
}

label i{
    /* color: rgb(50,50,50); */
    color: white;
    font-size: 22px;
    margin-right: 5px;
}


input:not([type="submit"]){
    margin-bottom: 30px;
    width: 100%;
    line-height: 50px;
    border: 0;
    border-bottom: 2px solid rgb(100,100,100);
    outline: 0;
    padding: 0 20px;
    font-size: 18px;
    font-weight: lighter;
}

input:not([type="submit"]):focus{
    border-bottom: 2px solid rgb(175,175,175);
}

input[type="submit"]{
    background-color: rgb(0, 210, 0);
    color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: 100%;
    max-width: 120px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.25s;
}

input[type="submit"]:hover{
    background-color: rgb(0, 180, 0);
    color: rgb(225,225,225);
}

form a{
    display: inline-block;
    background-color: white;
    color: rgb(0,190,0);
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    transition: color 0.2s;
    text-align: center;
    position: relative;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 120px;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px;
}

form a:hover{
    background-color: rgb(225,225,225);
    color: rgb(0,160,0);
}