@charset "utf-8";

html{
    font-size:100%;
}

.login-body,.welcome-main{
    max-width:1000px;
    min-width:800px;
    margin-left:auto;
    margin-right:auto;
}

/* ログインページ */
.header{
    text-align: center;
}

.header h1{
    padding:20px;
}

.header p{
    padding-bottom:40px;
}

.login-front{
    height:500px;
    background:rgb(30,30,30);
    padding:100px 50px;
    display: flex;
    flex-direction: column;
}

.login-front-manager{
    height:500px;
    background:#08a;
    padding:100px 50px;
    display: flex;
    flex-direction: column;
}

.login-front label,.login-front-manager label{
    color:rgb(255,255,255);
    margin-bottom:50px;
}

.login-front span,.login-front-manager span{
    display: inline-block;
    width:150px;
}

[type="text"],[type="password"]{
    width:250px;
    padding:10px;
    font-size:1.1rem;
    background: #fff;
    border-radius: 5px;
}

[type="password"]{
    width:300px;
}

[type="submit"]{
    width:200px;
    margin:100px auto;
    padding:20px 30px;
    background:rgb(64, 160, 177);
    border-radius: 5px;
    color:white;
    font-size: 1.1rem;
    font-weight: bold;
    transition: .2s;
}

[type="submit"]:hover{
    transform:translateY(-2%);
    background:rgb(35, 87, 96);
}

.other-menu{
    height:100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap:50px;
}

.other-menu a{
    text-decoration: none;
    background:rgb(200,200,200);
    padding:10px 20px;
    color:rgb(50,50,50);
    border-radius: 5px;
    transition: .2s;
}

.other-menu a:hover{
    background:rgb(100,100,100);
}

/* ログイン中ページ */
.welcome-header{
    background: #000;
    height:100px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.welcome-header p{
    font-size:1.4rem;
}

.welcome-content{
    height:400px;
    padding-left:50px;
}

.welcome-content p{
    padding-top:50px;
    font-size:1.2rem;
    font-weight: bold;
}

.welcome-content p span{
    font-size:1rem;
    font-weight: normal;
}

.welcome-content p span:first-child{
    padding:5px 10px;
    margin-right:20px;
    background:rgb(250,250,250);
    color:#888;
}

.welcome-content a{
    display: inline-block;
    margin-top:30px;
    text-decoration: none;
    background:rgb(100,100,200);
    padding:10px 20px;
    color:#fff;
    border-radius: 5px;
    transition: .2s;
}

.welcome-content a:hover{
    transform: translateY(-3%);
    background:rgb(80,80,180);
}

.logout-btn{
    text-align: right;
    padding-right:50px;
}

.logout-btn a{
    padding:5px 10px;
    background:rgb(150,150,150);
    border-radius: 5px;
    text-decoration: none;
    color:#fff;
    transition: .2s;
}

.logout-btn a:hover{
    background:rgb(100,100,100);
}