﻿@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap');

body {
    margin: 0 auto;
    background: #fff;
    color: #fff;
    font-family: Arial;
    font-size: 12px;
} 

.body {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    background-color: #4d6f93;
    -webkit-filter: blur(3px);
    z-index: 0;
}

.blur {
    filter: blur(14px); /* Someday, sigh ... */
    -webkit-filter: blur(14px); /* Prefixed CSS3 blur filters */
    -moz-filter: blur(14px);
    -o-filter: blur(14px);
    -ms-filter: blur(14px);
    filter: url(#blur); /* Firefox needs SVG */
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='14'); /* IE lte 9 */
}

.grad {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
    z-index: 1;
    /*opacity: 0.7;*/
}

.gradPassword {
    position: fixed;
    top: -15px;
    left: -20px;
    right: -40px;
    bottom: -35px;
    width: auto;
    height: auto;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
    z-index: 1;
    opacity: 0.69;
}

.header {
    position: fixed;
    top: calc(40% - 33px);
    left: calc(50% - 260px);
    z-index: 2;
    font-family: 'Baloo 2', cursive;
}

    .header div {
        float: unset;
        color: #fff;
        font-size: 40px;
        font-weight: 700;
    }


.login {
    position: fixed;
    top: calc(40% - 75px);
    left: calc(53% - 50px);
    height: 150px;
    width: 350px;
    padding: 15px;
    z-index: 2;
}

    .login input[type=text] {
        width: 230px;
        height: 30px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 2px;
        color: #fff;
        font-family: "Public Sans", sans-serif;
        font-size: 16px;
        font-weight: 400;
        padding: 4px;
        margin-top: 10px;
    }

    .login input[type=password] {
        width: 230px;
        height: 30px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 2px;
        color: #fff;
        font-family: pu;
        font-size: 16px;
        font-weight: 400;
        padding: 4px;
        margin-top: 10px;
    }

.button1 {
    width: 240px;
    height: 35px;
    background: #F0901F;
    border: 1px solid #F0901F;
    cursor: pointer;
    border-radius: 2px;
    color: white;
    font-family: "Public Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 6px;
}

    .button1:hover {
        opacity: 0.6;
        color: white;
    }

    .button1:active {
        opacity: 0.6;
    }

.login input[type=text]:focus {
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus {
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=button]:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
    color: rgba(255,255,255,0.6);
}

.select1 {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

    .select1::-ms-expand {
        display: none;
    }

#lbltitle-child {
    color: #00BAD6;
}