/* page-form */
#page-form { padding: 48px 16px; background: #f6f7fb; box-sizing: border-box; }
#page-form * { box-sizing: border-box; }
#page-form section { max-width: 1100px; margin: 0 auto; padding: 40px; background: #fff; border-radius: 20px; box-shadow: 0 20px 48px rgba(20, 30, 60, .12); }
#page-form h2 { margin: 0 0 24px; padding-bottom: 13px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 20px; font-weight: 600; color: #9aa0a8; line-height: 1.2; border-bottom: 1px solid rgba(0, 0, 0, .08); }
#page-form h2 img { width: 32px; height: auto; display: block; }
#page-form h2 b { margin-right: 4px; font-size: 25px; color: #1f2937; letter-spacing: 1px; }
#page-form form { width: 100%; }
#page-form fieldset { margin: 0; padding: 0; border: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
#page-form fieldset p { margin: 0; display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 12px; }
#page-form label { display: block; font-size: 15px; font-weight: 600; color: #222; text-align: right; white-space: nowrap; }
#page-form fieldset p > span { display: block; min-width: 0; }
#page-form input[type="text"], #page-form select { width: 100%; height: 44px; padding: 0 14px; border: 1px solid #d6dbe5; border-radius: 8px; background-color: #fff; font-size: 15px; color: #222; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
#page-form select { cursor: pointer; }
#page-form input[type="text"]:focus, #page-form select:focus { border-color: #c8102e; box-shadow: 0 0 0 4px rgba(200, 16, 46, .12); background-color: #fff; }

#page-form p.ra { display: flex; align-items: center; gap: 12px; }
#page-form p.ra label { width: 104px; flex: 0 0 104px; }
#page-form p.ra span { display: inline-flex; align-items: center; gap: 5px; font-size: 15px; color: #333; }
#page-form input[type="radio"] { margin: 0; accent-color: #c8102e; }

#page-form fieldset.btn { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, .08); align-items: center; }
#page-form fieldset.btn p { display: flex; align-items: center; gap: 12px; }
#page-form fieldset.btn label { width: 104px; flex: 0 0 104px; }
#page-form #Checknum { width: 144px; text-transform: uppercase; }
#page-form #rand-img { object-fit: contain; }
#page-form p.send { display: block; }
#page-form .btn-submit { width: 100%; height: 46px; border: 0; border-radius: 9px; background: linear-gradient(135deg, #c8102e, #8b1e3f); text-align: center; color: #fff; font-size: 16px; font-weight: 600; letter-spacing: 2px; cursor: pointer; box-shadow: 0 11px 24px rgba(200, 16, 46, .25); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
#page-form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 29px rgba(200, 16, 46, .32); filter: brightness(1.05); }
#page-form .btn-submit:active { transform: translateY(0); box-shadow: 0 7px 16px rgba(200, 16, 46, .22); }

@media (max-width: 900px) {
	#page-form section { padding: 32px 24px; }
	#page-form fieldset { gap: 16px; }
}
@media (max-width: 768px) {
	#page-form { padding: 32px 14px; }
	#page-form section { padding: 24px 16px; border-radius: 16px; }
	#page-form h2 { margin-bottom: 20px; font-size: 17px; flex-wrap: wrap; }
	#page-form h2 b { font-size: 20px; }
	#page-form fieldset, #page-form fieldset.btn { grid-template-columns: 1fr; }
	#page-form fieldset p { grid-template-columns: 1fr; gap: 7px; }
	#page-form label, #page-form p.ra label, #page-form fieldset.btn label { width: auto; flex: none; text-align: left; }
	#page-form p.ra { display: grid; grid-template-columns: auto auto auto; justify-content: start; gap: 10px 14px; }
	#page-form p.ra label { grid-column: 1 / -1; }
	#page-form fieldset.btn p { flex-wrap: wrap; align-items: flex-start; }
	#page-form #Checknum { width: calc(100% - 96px); flex: 1 1 auto; }
	#page-form #rand-img { flex: 0 0 80px; }
}
@media (max-width: 480px) {
	#page-form section { padding: 20px 14px; }
	#page-form h2 { justify-content: flex-start; text-align: left; }
	#page-form input[type="text"], #page-form select, #page-form .btn-submit { height: 46px; font-size: 16px; }
	#page-form fieldset.btn p { gap: 9px; }
	#page-form #Checknum { width: 100%; flex: 1 1 100%; }
	#page-form #rand-img { width: 88px !important; }
	#page-form .btn-submit { margin-top: 4px; }
}