/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2016/06/10, 9:59:03
    Author     : atsushi
*/
* {
   /*-webkit-appearance: none;*/
}

#userLoginScreen {
    margin: 30px auto;
    width: 40%;
    /*background: rgba(255,255,255,0.85);*/
    border-radius: 10px;
    /*padding: 30px;*/
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
}

#loginEventName {
    text-align: left;
}

#signinFormArea {
    text-align: left;
    margin: 15px 0 45px 0;
}

#userLoginScreen i {
    margin-right: 0.5em;
}

#signinFormArea input,
#forgotPassword input {
    font-size: 1.2em;
    font-weight: normal;
    padding:10px;
    color:#aaa;
    border:solid 1px #ccc;
    width:100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

#signinFormArea input[type=checkbox] {
    border:none !important;
    width: 1em;
    box-shadow: none !important;
    padding: 0;
}


#signinFormArea .control-group,
#forgotPassword .control-group {
    margin-bottom: 15px;
}

#signinFormArea .actions input[type=submit],
#forgotPassword .actions input[type=submit] {
    width:100%;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px;
    color:#fff;
    background:#49a9d4;
    border-radius:5px;
    border: none;
    cursor: pointer;
}

#forgotPassword {
    text-align: left;
    margin-top: 30px;
}

#beAMember {
    text-align: center;
    margin-top: 30px;
}

.fontSmall {
    font-size: 0.7em;
}

.mb15 {
    margin-bottom: 15px;
}
.mb30 {
    margin-bottom: 30px;
}

/*----- タブレット -----*/
@media screen and (max-width:768px) {
#userLoginScreen {
    width: 80%;
}
}

/*----- スマホ -----*/
@media screen and (max-width:480px) {
#userLoginScreen {
    width: 95%;
}
#signinFormArea .actions input[type=submit],
#forgotPassword .actions input[type=submit] {
    font-size: 0.98rem;
}
    
}