/* Design-parity pass #6 (candidate account wall — shared by Candidate
 * Dashboard, Saved Jobs, My Applications, Job Alerts, Upload Resume) —
 * Indeed.com clone initiative. CSS-only. This markup (.gaj-account-wall,
 * from gaj_candidate_login_wall() in gaj-candidate-accounts.php) had zero
 * existing styling anywhere in the codebase — was rendering as two bare
 * stacked forms with no visual separation. Gives it Indeed's clean
 * two-panel signup/signin card treatment. */

.gaj-account-wall {
	max-width: 780px;
	margin: 20px 0;
}
.gaj-account-wall > p {
	color: #555;
	margin-bottom: 20px;
}
.gaj-account-wall-forms {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.gaj-account-wall-forms > div {
	flex: 1 1 300px;
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 8px;
	padding: 24px;
}
.gaj-account-wall-forms h3 {
	margin: 0 0 16px;
	color: #1a1a2e;
}
.gaj-account-wall-forms form p {
	margin-bottom: 14px;
}
.gaj-account-wall-forms label {
	display: block;
	font-weight: 600;
	color: #1a1a2e;
	font-size: 0.9em;
	margin-bottom: 4px;
}
.gaj-account-wall-forms input.input-text {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #ccced6;
	border-radius: 6px;
	font-size: 1em;
}
.gaj-account-wall-forms input.input-text:focus {
	outline: none;
	border-color: #675cff;
	box-shadow: 0 0 0 3px rgba(103, 92, 255, 0.15);
}
.gaj-account-wall-forms .button {
	width: 100%;
}
