/**** ログインページ ****/
/* ログインページ全体のスタイル */
.pms-login-wrapper {
    max-width: 430px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* ログインタイトル */
.pms-login-wrapper h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333333;
}

/* フォームフィールドのスタイル */
.pms-login-wrapper input[type="text"],
.pms-login-wrapper input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 15px 0;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
}

/* ログインボタンのスタイル */
.pms-login-wrapper input[type="submit"] {
    background-color: var(--main_color);
    color: #363636;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pms-login-wrapper input[type="submit"]:hover {
    background-color: var(--main_color_dark);	
    color: #6f6f6f;
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* フォームリンクのスタイル（パスワードリセットなど） */
.pms-login-wrapper a {
    display: inline-block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
    font-size: 0.9em;
}

.pms-login-wrapper a:hover {
    text-decoration: underline;
}

/* エラーメッセージのスタイル */
.pms-login-message {
    background-color: #ffe6e6;
    color: #d9534f;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}
.pms-login-error{
	margin: 20px 0;
}

/* 成功メッセージのスタイル */
.pms-login-message-success {
    background-color: #e6ffed;
    color: #28a745;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}