/* B2B Platform — Apply Form */

.b2b-apply-form-wrapper { max-width: 640px; margin: 0 auto; padding: 2rem 0; }
.b2b-apply-form__title  { font-size: 1.75rem; margin-bottom: .5rem; }
.b2b-apply-form__description { color: #555; margin-bottom: 2rem; line-height: 1.7; }

.b2b-form { display: flex; flex-direction: column; gap: 1.25rem; }
.b2b-form__row { display: flex; flex-direction: column; gap: 1.25rem; }
.b2b-form__row--2 { flex-direction: row; gap: 1rem; }
.b2b-form__row--2 .b2b-form__group { flex: 1; }
.b2b-form__group { display: flex; flex-direction: column; gap: .4rem; }
.b2b-form__group label { font-size: .9rem; font-weight: 600; color: #2c2c2c; }
.b2b-required { color: #c00; margin-left: 2px; }

.b2b-form input[type="text"],
.b2b-form input[type="email"],
.b2b-form select {
	width: 100%; padding: .65rem .85rem;
	border: 1.5px solid #d1d5db; border-radius: 6px;
	font-size: .95rem; font-family: inherit; color: #1a1a1a;
	background: #fff; box-sizing: border-box;
	transition: border-color .2s, box-shadow .2s;
}
.b2b-form input:focus, .b2b-form select:focus {
	outline: none; border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba(0,115,170,.15);
}
.b2b-field-error { border-color: #dc2626 !important; }

.b2b-field-hint { margin: 0; font-size: .8rem; color: #6b7280; line-height: 1.5; }

.b2b-form__messages { padding: .75rem 1rem; border-radius: 6px; font-size: .9rem; line-height: 1.5; display: none; }
.b2b-form__messages:not(:empty) { display: block; }
.b2b-success { background: #f0fdf4; border: 1px solid #86efac; color: #14532d; }
.b2b-warning { background: #fffbeb; border: 1px solid #fcd34d; color: #78350f; }
.b2b-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #7f1d1d; }

.b2b-btn--primary {
	display: inline-block; padding: .75rem 2rem;
	background: #0073aa; color: #fff; border: none; border-radius: 6px;
	font-size: 1rem; font-weight: 600; cursor: pointer;
	font-family: inherit; transition: background .2s;
}
.b2b-btn--primary:hover { background: #005d8c; }
.b2b-btn--primary:disabled { opacity: .65; cursor: not-allowed; }

@media (max-width: 600px) {
	.b2b-form__row--2 { flex-direction: column; }
}
