﻿#LoginForm {
    transition: all 0.5s ease;
    border: 1em solid transparent;
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, .6) 0px 0px 1em .2em;
    width: 25em;
    height: 30em;
    margin: auto;
    padding: 2em;
    margin-top: 5em;
    transform: scale(1);
    background-color: rgba(245, 245, 245, 1);
}
    #LoginForm:hover {
        transition: all 0.5s ease;
        box-shadow: rgba(0, 0, 0, .3) 0px 0px 15px 2px;
        transform: scale(1.005);
    }
    #LoginForm h1 {
        margin-left: 0em;
        font-size: 3rem;
        font-family: sans-serif;
        text-align:center;
    }
#loginsubtext {
    font-family: sans-serif;
    margin-left: 0em;
    margin-right: 0;
    margin-bottom: 0;
    display:inline-block;
    width:100%;
    text-align: center;
}
#LoginForm input {
    transition: all 0.3s ease;
    width: 12em;
    height: 2em;
    font-size: 1.2rem;
    display:block;
    margin:auto;
    margin-top: 1em;
    font-family: sans-serif;
    padding-left: .1em;
    padding-right: .1em;
    border-width: .3em;
    border-color: transparent;
    border-bottom: .12em solid black;
    background-color: rgba(200,200,200, .1);
    transform: scale(1);
    box-shadow: rgba(0,0,0, .3) 0px 0px 5px 1px;
}
#LoginForm input:focus {
    transition: all 0.3s ease;
    outline: none;
    box-shadow: rgba(0,0,0, .3) 5px 5px 5px 1px;
    background-color: rgba(160,160,160, .15);
    border-color: transparent;
    transform: scale(1.05);
}
#forgotpassword {
    display: block;
    width:50%;
    margin:auto;
    margin-top: .5em;
}
#LoginForm button {
    color:white;
    transition: all 0.5s ease;
    border-radius: .2em;
    border-width: .1em;
    border-color: transparent;
    background-color: rgba(69,154,69,1);
    margin-left: .6em;
    width: 10em;
    display:block;
    margin:auto;
    height: 2em;
    font-size: 1.5rem;
    font-family: sans-serif;
    margin-top: 1em;
}
    #LoginForm button:hover {
        transition: all 0.5s ease;
        background-color: rgba(69,154,69,.8);
    }
    #LoginForm #loginregistergroup {
        margin-top: 1em;
    }

