@charset "utf-8";
/* Loginページ用CSS */
/*----------- 全体的なCSS -----------*/
html {
    box-sizing: border-box;
}

body {
    font-family:Helvetica,Verdana,Arial,
    'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',Osaka,メイリオ,
    Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

p, li {
    line-height: 1.6;
}

a, p {
    font-size: 0.8rem;
}
a {
    color: #fff;
}

a:hover,
button:hover
{
    opacity: 0.5;
}

div#container {
    width: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

div#card {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    box-shadow: 0 3px 3px #888;
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    height:445px;
    max-width: 500px;
    min-width: 400px;
    margin: auto;
    border: 1px solid #dddddd;
    border-radius: 3px;
}

div#header {
    text-align: center;
}

footer{
    position: absolute;
    bottom: 0;

    width: 100%;
    height: 30px;

    text-align: center;
    line-height: 30px;
    font-size: small;
    color: #999;
}

div#logo {
    margin: 10px auto;
    padding: 15px 0 0;
}
div#logo img {
    cursor: default;
}

div#main {
    background-color: #357b38;
    color: #ffffff;
    padding: 10px;
    margin: 30px;
    border-radius: 3px;
    text-align: center;
}

#card input {
    width: 100%;
    height: 36px;
    box-sizing: border-box;
}

div#main div {
    margin: 20px 0;
}

button {
    width: 100%;
    height: 40px;
}

/*------------ FlashMessage関連 -----------*/

div.message {
    width: 100%;
    text-align: center;
    line-height: 3.0;
    margin: 10px 0;
}

div.success {
    background-color: #1e90ff;
    color: #fff;
}

div.error {
    background-color: #fed0e0;
    color: #000;
}

div.hidden {
    display:none;
}
