/*
 * CIH Affiliate 外部アフィリエイター登録フォーム スタイル ── フェーズ3
 * dashboard.css と配色・トーンを揃え、既存テーマに馴染ませる。
 */

.cih-aff-register {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
	color: #1f2933;
}

.cih-aff-register .cih-aff-title {
	font-size: 1.4rem;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid #16a085;
}

/* フラッシュメッセージ(dashboard.css と同じ見た目) */
.cih-aff-register .cih-aff-flash {
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 0.92rem;
}
.cih-aff-register .cih-aff-flash--success {
	background: #e6f7ef; color: #0b6b4f; border: 1px solid #9fdcc4;
}
.cih-aff-register .cih-aff-flash--error {
	background: #fdecea; color: #a4291c; border: 1px solid #f0b3ab;
}
.cih-aff-register .cih-aff-flash--notice {
	background: #eef2f7; color: #3a4a5c; border: 1px solid #c4d0de;
}

/* カード */
.cih-aff-register .cih-aff-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px 22px;
	margin-bottom: 16px;
}
.cih-aff-register .cih-aff-card__head {
	font-size: 1.08rem;
	margin: 0 0 12px;
	color: #0b6b4f;
}

.cih-aff-register .cih-aff-lead {
	margin: 0 0 18px;
	font-size: 0.95rem;
	line-height: 1.7;
}
.cih-aff-register .cih-aff-note {
	font-size: 0.88rem;
	color: #52606d;
	line-height: 1.7;
}

.cih-aff-register .cih-aff-code {
	font-size: 0.98rem;
}
.cih-aff-register .cih-aff-code strong {
	font-size: 1.1rem;
	color: #0b6b4f;
	letter-spacing: 0.04em;
}

/* 入力フィールド */
.cih-aff-register .cih-aff-field {
	margin-bottom: 16px;
}
.cih-aff-register .cih-aff-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 6px;
}
.cih-aff-register .cih-aff-field input[type="text"],
.cih-aff-register .cih-aff-field input[type="email"],
.cih-aff-register .cih-aff-field input[type="tel"],
.cih-aff-register .cih-aff-field input[type="password"] {
	width: 100%;
	padding: 9px 11px;
	font-size: 0.95rem;
	border: 1px solid #cbd2d9;
	border-radius: 6px;
	box-sizing: border-box;
}
.cih-aff-register .cih-aff-field input:focus {
	outline: none;
	border-color: #16a085;
	box-shadow: 0 0 0 2px rgba(22, 160, 133, 0.15);
}

/* 入力欄の補足テキスト */
.cih-aff-register .cih-aff-hint {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	color: #7b8794;
}

/* チェックボックス行 */
.cih-aff-register .cih-aff-field--check label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
	font-size: 0.92rem;
	cursor: pointer;
}
.cih-aff-register .cih-aff-field--check input {
	margin-top: 2px;
}

/* 同意文ブロック */
.cih-aff-register .cih-aff-terms {
	background: #f7f9fb;
	border: 1px solid #dde3ea;
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.cih-aff-register .cih-aff-terms__head {
	margin: 0 0 8px;
	font-size: 0.92rem;
	color: #3a4a5c;
}
.cih-aff-register .cih-aff-terms p {
	margin: 0 0 8px;
	font-size: 0.86rem;
	line-height: 1.7;
	color: #52606d;
}
.cih-aff-register .cih-aff-terms p:last-child {
	margin-bottom: 0;
}

/* ボタン */
.cih-aff-register .cih-aff-btn {
	display: inline-block;
	padding: 9px 18px;
	font-size: 0.92rem;
	border-radius: 6px;
	border: 1px solid #16a085;
	background: #fff;
	color: #0b6b4f;
	text-decoration: none;
	cursor: pointer;
}
.cih-aff-register .cih-aff-btn:hover {
	background: #f0faf7;
}
.cih-aff-register .cih-aff-btn--primary {
	background: #16a085;
	color: #fff;
}
.cih-aff-register .cih-aff-btn--primary:hover {
	background: #138a72;
}
