@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --ppt_blue1: #112C51;
    /* PPT Blue (Dark)  */
    --ppt_blue2: #0D4975;
    /* PPT Blue 75%     */
    --ppt_blue3: #096698;
    /* PPT Blue 50%     */
    --ppt_blue4: #0482BC;
    /* PPT Blue 25%     */
    --ppt_blue5: #009FDF;
    /* PPT Blue (Light) */
    --ppt_blue5_50: #6fd5ff;
    /* PPT Blue (Light), 50% Lighter */
    --ppt_blue5_75: #b7eaff;
    /* PPT Blue (Light), 75% Lighter */
    --ppt_blue5_90: #e2f7ff;
    /* PPT Blue (Light), 90% Lighter */
    --ppt_yellow: #FFD600;
    --ppt_orange: #F89B1C;
}

/**************************************************************************************************/
body {
    background-color: black;
    margin: 0px;
    font-family: 'Roboto', 'calibri', 'Arial', 'Verdana';
    background-attachment: fixed;
    background-image: url("background.png");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 25vh 0vh black;
}

/**************************************************************************************************/
.div_landing {
    /* position: absolute; */
    background: #ffffff;

    box-shadow: 0px 0px 100px 10px #00ffff;
    border-radius: 30px;
    width: 650px;
    height: 400px;
    padding: 25px;
    /**********************************************************************************************/
    transition-property: transform, box-shadow;
    transition-duration: 0.5s;
    /**********************************************************************************************/
    font-family: 'Roboto', 'calibri', 'Arial', 'Verdana';
    font-size: 20px;
    font-weight: normal;
    border: 2px solid black;
    color: black;
    /**********************************************************************************************/
    position: absolute;
    top: 0;
    ;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* .div_landing:hover {
    transform: scale(1.1);
	box-shadow: 0px 50px 100px 10px #00ffff88;
} */
/**************************************************************************************************/
.div_login {
    border: 1px solid #aaaaaa;
    margin: 10px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 20px 0px #aaffff;

}

/**************************************************************************************************/
.table_login td:first-child {
    text-align: right;
}

.table_login td {
    font-size: 25px;
    padding: 8px;

}

.table_login input {
    font-size: 25px;
    width: 350px;
    padding: 3px 7px;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    background-color: #eeeeee;
}

.table_login input:focus {
    background-color: #eeffff;
}

/**************************************************************************************************/
.text_login_welcome {
    font-size: 40px;
    font-weight: bold;
    padding: 10px;
}

.text_login_instructions {
    font-size: 22px;
}

.text_expiration {
    font-size: 20px;
    margin: 0px;
    padding: 0px;
    color: #888888;
}

.text_status {
    color: red;
    font-weight: bold;
    height: 20px;
}

/**************************************************************************************************/
.button_login {
    width: 200px;
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: var(--ppt_blue5);
    border: 1px solid white;
    color: white;
    text-align: center;
    cursor: pointer;
    font-family: 'Roboto', 'calibri', 'Arial', 'Verdana';
    white-space: nowrap;
    box-shadow: 0px 0px 10px 0px #00000055;
}

.button_login:hover {
    background-color: var(--ppt_blue1);
}