/* TNR Onboarding Form */

.tnr-onboarding-wrap {
	max-width: 700px;
	margin: 24px auto 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #ffffff;
	border: 1px solid #e6ecef;
	border-radius: 20px;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
	padding: 32px;
}

#tnr-onboarding-form .tnr-field-row,
#tnr-hosting-form .tnr-field-row,
#tnr-hosting-form-wrap .tnr-field-row {
	margin-bottom: 20px;
}

#tnr-hosting-form-wrap .tnr-field-desc,
#tnr-hosting-form .tnr-field-desc,
#tnr-onboarding-form .tnr-field-desc {
	margin-bottom: 20px;
}

#tnr-onboarding-form label,
#tnr-hosting-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}

#tnr-onboarding-form .req,
#tnr-hosting-form .req {
	color: #c00;
}

#tnr-onboarding-form .optional,
#tnr-hosting-form .optional {
	font-weight: 400;
	color: #888;
	font-size: 12px;
}

#tnr-onboarding-form input[type="text"],
#tnr-onboarding-form input[type="email"],
#tnr-onboarding-form input[type="tel"],
#tnr-onboarding-form textarea,
#tnr-hosting-form input[type="text"],
#tnr-hosting-form input[type="email"],
#tnr-hosting-form input[type="tel"],
#tnr-hosting-form input[type="url"],
#tnr-hosting-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	font-size: 15px;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
}

#tnr-onboarding-form input:focus,
#tnr-onboarding-form textarea:focus,
#tnr-hosting-form input:focus,
#tnr-hosting-form textarea:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 4px rgba(0,115,170,.12);
}

.tnr-field-desc {
	margin: 5px 0 0;
	font-size: 14px;
	color: #5f6976;
}

.tnr-onboarding-wrap .tnr-field-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #3c4858;
}

.tnr-btn-submit {
	display: inline-block;
	background: linear-gradient(135deg, #006ba1 0%, #0088d9 100%);
	color: #fff;
	border: none;
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	cursor: pointer;
	transition: transform .2s, background .2s, box-shadow .2s;
	box-shadow: 0 12px 24px rgba(0, 115, 170, 0.14);
}

.tnr-btn-submit:hover {
	background: linear-gradient(135deg, #00527c 0%, #006d9f 100%);
	transform: translateY(-1px);
}
.tnr-btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.tnr-ob-notice {
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: 500;
}

.tnr-ob-notice.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.tnr-ob-notice.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.tnr-notice {
	padding: 12px 16px;
	background: #f0f0f0;
	border-radius: 6px;
	color: #555;
}

.tnr-notice-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.tnr-fieldset {
	border: 1.5px solid #e9ecef;
	border-radius: 8px;
	padding: 16px 20px 4px;
	margin-bottom: 20px;
}

.tnr-fieldset legend {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #555;
	padding: 0 6px;
}

.tnr-hosting-wrap {
	max-width: 700px;
	margin: 0 auto;
}

.tnr-hosting-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1.5px solid #e6ecef;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	transition: box-shadow .3s, transform .3s;
}

.tnr-hosting-card:hover {
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
	transform: translateY(-2px);
}

.tnr-hosting-card h4 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: #1a2332;
	word-break: break-word;
}

.tnr-hosting-table {
	width: 100%;
	border-collapse: collapse;
}

.tnr-hosting-table th {
	text-align: left;
	padding: 10px 12px;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #556270;
	background: rgba(0, 115, 170, .04);
	border-bottom: 1px solid #e6ecef;
	width: 35%;
}

.tnr-hosting-table td {
	padding: 10px 12px;
	color: #3c4858;
	font-size: 14px;
	border-bottom: 1px solid #f0f2f5;
	word-break: break-word;
}

.tnr-hosting-table tr:last-child td {
	border-bottom: none;
}
