#LoginContainer
    {
        width:100%;
        height: 100%;
        box-sizing: border-box;
        padding:10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--Secondary-Color);
        /*
        background-image: url('../Image/Tagline.jpg');
        background-repeat: no-repeat;       
        background-position: center;        
        background-size: cover;
        */             

    }
#LoginContainerD1
    {
        width:350px;
        height:100%;
        border:solid 5px var(--Primary-Color);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px;
    }
#LoginContainerD1 .logo-container
    {
        width:100%;
        display:flex;
        justify-content: center;
    }
#LoginContainerD1 .logo-container img
    {
        width:80%;
    }
#LoginContainerD1 .description-container
    {
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
#LoginContainerD1 .description-container span
    {
        font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
        font-weight: bold;
        font-size: 28px;
    }
#LoginContainerD1 .description-container1
    {
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }
#LoginContainerD1 .description-container1 span
    {
        font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
        font-weight: bold;
        font-size: 20px;
    }
#LoginContainerD1 .form-group
    {
        width:100%
    }
#LoginContainerD1 .form-group span
    {
       font-weight: 800; 
       text-shadow: 1px 3px 5px gray;
    }
#LoginContainerD1 .form-group input[type="text"], #LoginContainerD1 .form-group input[type="password"]
    {
        width:100%;
        padding:8px;
        border:solid 1px black;
        border-radius: 5px;
        outline: none;
        box-shadow: 1px 3px 5px gray;
    }
#LoginContainerD1 button
    {
        width:100%;
        padding: 8px;
        margin-top: 10px;
        font-weight: 800;
        border:solid 1px black;
        background-color: var(--Primary-Color);
        border-radius: 5px;
        box-shadow: 1px 3px 5px gray;
    }
#LoginContainerD1 button:hover
    {
        background-color:blue;
        color:white;
        cursor: pointer;
    }
#LoginContainerD5
    {
        width:100vw;
        height: 100vh;
        position: absolute;
        top:0;
        left: 0;
        z-index: 999;
        background-color: rgba(0,0,0,.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }
#LoginContainerD51
    {
        width: 40%;
        border: solid 1px gray;
        border-radius: 5px;
        background-color:var(--Primary-Color);
    }
#LoginContainerD511
    {
        width: 100%;
        height: 30px;
        box-shadow:1px 3px 5px var(--Tertiary-Color);
        display: flex;
        justify-content:space-between;
        align-items: center;
    }
#LoginContainerD511 i
    {
        font-size: 16px;
        margin-right: 5px;
        text-shadow: 1px 3px 5px gray;
        cursor: pointer;
    }
#LoginContainerD511 span
    {
        margin-left: 5px;
        text-shadow: 1px 3px 5px gray;
        font-weight: 800;
    }
#LoginContainerD512
    {
        width: 100%;
        padding:10px 5px 5px 5px;
    }
#LoginContainerD5121
    {
        width: 100%;
        border:solid 1px var(--Tertiary-Color);
        border-radius: 5px;
        padding:6px;
        background-color: var(--Secondary-Color);
    }
#LoginContainerD5121 .form-group
    {
        width:100%
    }
#LoginContainerD5121 .form-group span
    {
       font-weight: 800; 
       text-shadow: 1px 3px 5px gray;
    }
#LoginContainerD5121 .form-group input[type="text"], #LoginContainerD5121 .form-group input[type="password"]
    {
        width:100%;
        padding:8px;
        border:solid 1px var(--Tertiary-Color);
        border-radius: 5px;
        outline: none;
        box-shadow:inset 1px 1px 1px black;
        background-color: var(--Primary-Color);
    }
#LoginContainerD512 button
    {
        width:100%;
        padding: 8px;
        margin-top: 10px;
        font-weight: 800;
        border:solid 1px var(--Tertiary-Color);
        border-radius: 5px;
        box-shadow: 1px 3px 5px gray;
        cursor: pointer;
    }


