﻿html, body {
    height: 100%;
    overflow: hidden;
    /*background-color: #e6e7df;*/
    /*background-color: #c2c0b3;*/
    background-color: #495B67;
}

.loginlogo {
    color: #999999;
    /*color: #aaaaa8;*/
    font-family: 'Vesper Libre', serif;
}


div#login {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 300px;
    margin: -150px 0px 0px -200px;
    text-align: center;
}

button.loginBtn {
    height: 45px;
    line-height:45px;
    /*background-color: #EEECE1;*/
    /*background-color: #343434;*/
    background-color: #999999;
    color: #ffcc00;
    border-style: none;
    font-size: 18px;
    font-family: 'Vesper Libre', serif;
    box-shadow: 2px 2px 3px 1px #666;
    -moz-box-shadow: 2px 2px 3px 1px #666;
    -webkit-box-shadow: 2px 2px 3px 1px #666;
    margin-top:30px;
}

.logintext {
    width: 300px;
    height: 40px;
    padding: 2px;
    margin: 10px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px; /* for Safari and Chrome 対応*/
    -moz-border-radius: 5px; /* for Firefox 対応*/
}

h1 {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    color: #eeeeee;
}

    h1 span {
        position: relative;
        display: inline-block;
        padding: 0 0.5em;
    }

        h1 span::before, h1 span::after {
            position: absolute;
            top: 50%;
            content: '';
            width: 1.5em;
            height: 1px;
            background-color: #999999;
        }

        h1 span::before {
            left: 100%;
        }

        h1 span::after {
            right: 100%;
        }

