/* スマホでの意図しないズームやレイアウト崩れを防ぐ基本設定 */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    /* 横スクロールの完全防止 */
    overflow-x: hidden;
}

/* 右上のアカウントロゴ（アイコン・名前）のスタイル */
.account-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 200px;
}

.account-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.account-name {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* メインコンテンツコンテナ（スマホ幅に最適化） */
.container {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 40px;
    /* 右上のロゴと重ならないように余白を確保 */
}

.welcome-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

h2 {
    font-size: 17px;
    color: #222;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    text-align: left;
}

select,
textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 16px;
    /* スマホでフォームタップ時に画面が自動ズームするのを防ぐため16px以上に設定 */
    background-color: #fff;
}

button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.menu-btn {
    background-color: #06c755;
    color: white;
    margin-bottom: 12px;
}

.submit-btn {
    background-color: #06c755;
    color: white;
}

.back-btn {
    background-color: #e5e5ea;
    color: #333;
}