/* ログイン画面全体のレイアウト */
.contents_wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.contents_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ログインボックスのスタイル */
#dr_login_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

#dr_login_box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

#dr_login_box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* フォーム要素のスタイル */
#dr_login_box input[type="text"],
#dr_login_box input[type="password"],
#dr_login_box input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#dr_login_box input[type="text"]:focus,
#dr_login_box input[type="password"]:focus,
#dr_login_box input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* エラーメッセージ */
.error_message {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

/* ボタンスタイル */
.dr_next_btn_wrap {
    margin: 20px 0;
}

.dr_next_btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.dr_next_btn:hover {
    background: #0056b3;
}

/* パスワードリンク */
.password_wrap {
    text-align: center;
    margin: 15px 0;
}

.password_wrap a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.password_wrap a:hover {
    text-decoration: underline;
}

/* LINEログインセクション */
.p1 {
    text-align: center;
    margin: 25px 0 15px;
    font-size: 16px;
    color: #333;
    position: relative;
}

.p1::before,
.p1::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background-color: #ddd;
}

.p1::before {
    left: 0;
}

.p1::after {
    right: 0;
}

/* LINEログインボタン */
.login_btn {
    background: #00b900;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.login_btn:hover {
    background: #009900;
}

/* コピーライト */
.check_copy {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    #dr_login_box {
        padding: 20px;
    }

    #dr_login_box h2 {
        font-size: 20px;
    }

    .contents_wrap {
        padding: 10px;
    }
}