/* =================================== */
/* Account Page Styles                 */
/* =================================== */
body>main,
.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
    /* ヘッダー・フッター分を考慮 */
}

.account-form-container {
    max-width: 450px;
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.account-form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    /* base.cssのスタイルを打ち消し */
    background: none !important;
    color: #333 !important;
    padding: 0 !important;
    border: none !important;
}

.account-form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.account-form-container form p {
    text-align: left;
    margin-bottom: 15px;
}

.account-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.account-form-container input[type="text"],
.account-form-container input[type="email"],
.account-form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.account-form-container .primary-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.2s;
}

.account-form-container .primary-btn:hover {
    background-color: #45a049;
}

/* Google Login/Connect Button */
.account-form-container .google-btn,
.account-form-container .connect-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    background-color: #fff;
    color: #757575;
}

.account-form-container .connect-btn:hover {
    background-color: #3367D6;
}


.account-form-container .google-btn:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.google-icon {
    margin-right: 10px;
    font-weight: bold;
    color: #4285F4;
}

/* 連携ボタン内のアイコンは白くする */
.connect-btn .google-icon {
    color: white;
}

/* ログイン/新規登録ページ間の案内リンク */
.account-switch-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}