/*===============================================================
 Common
===============================================================*/

body {
    background: rgb(249, 249, 249);
    background: -moz-radial-gradient(center, ellipse cover, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    background: radial-gradient(ellipse at center, rgba(249, 249, 249, 1) 0%, rgba(215, 218, 219, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#d7dadb', GradientType=1);
}

.logo {
    width: 150px;
    height: 50px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/PF_Full.png');
    animation-duration: 1s;
    animation-delay: 1s;
    transition: all 1s;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -45px 0 0 -71px;
}

.loading {
    width: 33px;
    height: auto;
    position: absolute;
    left: 10px;
    top: 10px;
}

body a {
    font-weight: normal;
    color: #c01414;
}

    body a:hover {
        color: #a91313;
        text-decoration: underline;
    }

body .btn {
    background: #c01414;
}

    body .btn:hover, body .btn:focus {
        background: #a91313;
    }

.container {
    margin-right: auto;
    margin-left: auto;
    height: 100%;
    margin-top: 0;
    padding-top: 0;
    top: 0;
    position: absolute;
    width: 100%;
}

/*===============================================================
 Login Box
===============================================================*/

.box {
    width: 400px;
    height: auto;
    background: transparent;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -200px 0 0 -200px;
}

    .box .boxContent {
        background: #FFF;
        border: 1px solid rgb(216, 216, 216);
        border-radius: 4px;
        box-shadow: 0px 0px 48px -3px rgba(0, 0, 0, 0.12);
    }

.shake {
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -moz-animation-duration: .8s;
    -o-animation-duration: .8s;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
}

.box .change {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 20px;
    line-height: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 9pt;
}

    .box .change:hover {
        text-decoration: underline;
    }

.box .profile {
    display: block;
    position: relative;
    top: -50px;
    left: 50%;
    margin: 0 0 0 -50px;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #CCC;
    background: #F0F0F0 url('../images/spinner_gray.gif') no-repeat center center;
    background-size: 35%;
}

    .box .profile img {
        display: block;
        clear: both;
        width: 100px;
        height: 100px;
    }

.box .title {
    display: block;
    clear: both;
    padding: 30px 20px 20px;
    background: #FFF;
}

    .box .title h2 {
        text-align: center;
        font-weight: 300;
        font-size: 16pt;
        margin-bottom: 3px;
        color: #555;
    }

    .box .title span {
        display: block;
        line-height: 20px;
        text-align: center;
        font-size: 9pt;
        color: #808285;
    }

.box .fieldblock {
    display: block;
    clear: both;
    background: #f2f2f2;
    padding: 10px 20px 10px 19px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.05);
}


input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea {
    -webkit-appearance: none;
}

.box .fieldblock .field {
    margin: 0 0 5px 0;
}

    .box .fieldblock .field label {
        font-size: 8pt;
        margin: 0 0 5px 0;
        font-weight: 500;
        text-transform: uppercase;
        color: #555;
    }

    .box .fieldblock .field input {
        padding: 10px;
        background: #FFF;
        border: 1px solid #CCC;
        font-size: 10pt;
        width: 100%;
        border-radius: 2px;
    }

        .box .fieldblock .field input.validation {
            background: #fff8f3;
        }

    .box .fieldblock .field.email input {
        font-size: 11pt;
    }

.box .actions {
    display: table;
    clear: both;
    padding: 20px;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFF;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

    .box .actions a.forgot {
        float: left;
        line-height: 100%;
        padding: 10px 0;
        font-size: 9pt;
    }

    .box .actions a.return {
        display: none;
        float: left;
        line-height: 100%;
        padding: 10px 0;
        font-size: 10pt;
    }

    .box .actions a.btn {
        float: right;
        text-decoration: none;
    }

.box .summary {
    font-size: 8pt;
    margin: 0;
    padding: 10px 0;
    float: left;
    width: 100%;
    background: transparent;
}

    .box .summary p {
        display: block;
        line-height: 20px;
        text-align: center;
        color: rgba(0, 0, 0, 0.44);
        margin-top: 12px;
    }

    .box .summary span a:hover {
        text-decoration: underline;
    }

.box .actions a.btn[disabled=disabled] {
    pointer-events: none;
    cursor: default;
    opacity: .8;
    background-color: #bdc3c7 !important;
}

.rounded {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#update-browser-message {
    display: none;
    padding: 18px;
}

.version-number {
    font-weight: 600;
    padding: 10px;
    margin: 15px 0px 15px 0px;
    background: #f3f3f3;
    color: rgb(100,100,100);
}

#browser-version {
    margin-bottom: 20px;
}

.recommend-message {
    padding-top: 15px;
    padding-bottom: 15px;
}

#login-container {
    display: block;
}

/*===============================================================
 @media
===============================================================*/
/*If iPad */
@media screen and (max-width:770px) {
    .box .actions a.btn {
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .box .actions a.forgot {
        width: 100%;
        position: relative;
        top: -8px;
    }
}
