@font-face{
    font-family: Futura;
    src: url('fonts/futura/woff/Futura-Bold.woff') format("WOFF");
    font-weight: normal;
}

*{
    font-family: Futura; 
}



body {
    width: 99%;
    /* margin-top: 56.34%; */
    background: url("images/polygon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover auto;
    vertical-align: middle;

}

.formClass{
    width: 50%;
    margin: auto;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0,0,0,0), rgba(0,0,0,0.5)); */
    text-align: center;
    padding: 30px;
    margin-top: 10%;

}

.avatarImage{
    border-radius: 50%;
    width: 25%;
    height: 25%;
    padding: 1px;
    border: 5px solid #fff;
    margin-bottom: 20px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.568);
}

.textInput{
    width: 30%; 
    padding-top: 56.47%;
    margin-bottom: 20px; 
    background: rgba(255,255,255);
    border: none;
    outline: none;
    padding: 10px;
    font-size: 13px;
    color: rgb(24, 0, 92);
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.322); */
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.404);
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -ms-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
}

.textInputLast{
    width: 30%; 
    padding-top: 56.47%;
    margin-bottom: 10px; 
    background: rgba(255,255,255);
    border: none;
    outline: none;
    padding: 10px;
    font-size: 13px;
    color: rgb(24, 0, 92);
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.322); */
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.404);
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -ms-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
}

.loginButton{
    width: 6%;
    height: 6%;
    margin-top: 15px;
    border-radius: 50%;
    
    
}
.loginButtonLink{
    border-radius: 50%;
    
}

.loginButtonLink:hover{
    animation: loginButtonAnimation 1s normal forwards ease-in-out;
}

.forgotPasswordLink{
    font-size: 100%;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    padding: 10px;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.404);
}

.forgotPasswordLink:hover{
    animation: forgotPass 1s normal forwards ease-in-out;
    /* animation-iteration-count: 1; */
}



/* Animations */

@keyframes forgotPass{
    0%{
        color: #fff;
        text-shadow: 0px 0px 40px rgba(0, 0, 0, 0);
    }
    100%{
        color: rgb(133, 133, 133);
        text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.692);
    }
}

@keyframes loginButtonAnimation{
    0%{
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0);
    }
    100%{
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.973);
    }
}








