﻿body {
    margin: 0px;
    padding: 0px;
}

#Container {
    position: relative;
    top: 2px;
    /*left: 2%;*/
    width: 1300px;
    height: 98vh;
    background-image: linear-gradient(to bottom, Linen, Silver );
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 20px;
    box-shadow: 3px 3px 12px gray, -3px -3px 12px gray;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: auto;
    /*align-items:center;*/
    overflow: hidden;
}
/*Designe*/
header {
    position: absolute;
    top: 0;
    height: 80px;
    width: 1300px;
    display: flex;
    flex-direction: row;
    /*margin: 0 auto;*/
    text-align: center;
    align-content: center;
    font-weight: bold;
    /*align-self:flex-start;*/
}

footer {
    position: absolute;
    height: 60px;
    width: 1300px;
    display: flex;
    flex-direction: column;
    /*justify-content:space-around;*/
    bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
}

    footer h3 {
        text-align: center;
        width: 1160px;
        margin: 0;
        padding: 0;
        align-self: flex-start;
        font-weight: bold;
    }

    footer h4 {
        display: flex;
        text-align: center;
        width: 1160px;
        margin: 0;
        padding: 0;
        align-self: flex-start;
        font-weight: bold;
        align-items: center;
    }


/*Style*/
header {
    font-family: Aparajita;
    font-size: 20pt;
    color: white;
    text-shadow: 1px 1px 3px black, 2px 2px 4px black, 2px 2px 4px black,3px 3px 5px black;
    /*background-image: linear-gradient( to top, SkyBlue,SteelBlue);*/
    background-image: linear-gradient(to right,LightSteelBlue, SteelBlue,LightSteelBlue);
    box-shadow: 2px 2px 6px slategray;
    border-radius: 20px 20px 0px 0px;
}

footer {
    font-family: Aparajita;
    font-size: 16pt;
    color : Navy;
    background-color: Lavender;
    box-shadow: 2px -2px 6px DarkSlateGrey;
    border-radius: 0px 0px 20px 20px;
}

header img {
    height: inherit;
    width: auto;
    display: table-cell;
    padding-left: 10px;
}

#TitleText {
    align-self: center;
    width: 100%;
}

#LoginBox {
    border: 1px solid gray;
    width: 400px;
    height: auto;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px darkslategray;
    position: relative;
    background-color: aliceblue;
    padding: 0;
    align-self: center;
    overflow: visible;
    text-align:center;
}

#ChangePWDBox {
    border: 1px solid gray;
    width: 500px;
    height: auto;
    min-width: 400px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px darkslategray;
    position: relative;
    background-color: aliceblue;
    padding: 0;
    align-self: center;
    overflow: visible;
    text-align:center;
}



#LBheading {
    background-image: linear-gradient(to right,LightSlateGrey, silver, LightSlateGrey);
    /*background-image: linear-gradient(to right,Teal, silver, Teal);*/
    border-radius: 10px 10px 0px 0px;
    color: black;
    font-family: Aparajita;
    display: flex;
    flex-direction: row;
}

    #LBheading > b {
        text-align: center;
        line-height: 30px;
        width: 100%;
        font-size: 20px;
    }



.LnT_Row {
    font-family: Aparajita;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 15px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    transition: 0.20s;
    border: 2px solid darkgray;
    overflow: hidden;
}

.LnT_Row_FP {
    font-family: Aparajita;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 5px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    transition: 0.20s;
    border: 2px solid darkgray;
    overflow: hidden;
}

    .LnT_Row:hover, .LnT_Row_FP:hover {
        border-color: steelblue;
        border-width: 2px;
        /*margin-top: 14px;*/
        /*margin-bottom: -1px*/
    }

    .LnT_Row:focus-within, .LnT_Row_FP:focus-within {
        box-shadow: 3px 3px 10px 5px lightblue;
        border-radius: 0px;
        border-color: steelblue;
        width: 80%;
    }



.LB_Left_Side {
    width: 40%;
    color:black;
    line-height: 25px;
    text-align: left;
    padding-left: 10px;
    font-weight: bold;
    align-self: center;
}

.LB_Right_Side {
    width: 60%;
    line-height: 25px;
    text-align: left;
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
    padding-left: 20px;
}



    .LB_Right_Side:focus {
        background-color: lightgoldenrodyellow;
    }

#BtnRow {
    /*margin-top: 20px;*/
    display: flex;
    justify-content: space-around;
    padding-left: 10%;
    padding-right: 10%;
}

.A_Btn {
    min-width: 100px;
    line-height: 24px;
    border-radius: 10px;
    background-image: linear-gradient(to top, silver, White);
    border-style: groove;
    font-family:Aparajita;
    font-size:16px;
    /*position: relative;*/
}

    .A_Btn:hover, .A_Btn:active, .A_Btn:focus {
        background-image: linear-gradient(to top, aliceblue, silver);
        box-shadow: 2px 3px 5px lightblue;
    }

    .A_Btn:active, .A_Btn:focus {
        border-radius: 0px;
        color: blue;
    }


.LB_Left_Side span {
    float: right;
}
   

    .ErrorMsg {
        position:absolute;
        bottom:80px; /*margin:auto;*/
        align-self: center;
        width:auto; line-height:30px;
        background-color:yellow;
        text-align:center;
        border: 2px solid darkgray;
        border-radius: 2px 8px 2px 8px;
        font-weight:bold; font-family:'Times New Roman';
        box-shadow: 5px 5px 10px darkslategray;
        padding-left:20px; padding-right:20px;
        font-family:Aparajita;
        font-size:20px;
    }

.box {
    width: 250px;
    /*height: 20px;*/
    margin-left: 85%;
    margin-top: -20px;
    background: #ffd966;
    padding: 5px;
    text-align: center;
    font-weight: 900;
    color: red;
    font-size:16px;
    font-family:Aparajita;
    position: relative;
    border-radius: 8px;
    box-shadow: 2px 2px 6px darkslategray;
}


.sb2:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid #ffd966;
    border-top: 10px solid #ffd966;
    border-bottom: 10px solid transparent;
    left: -16px;
    top: 6px;
    
}




