.prof-form-wrapper-fc2e2baf {
	background: #ffffff;
	padding: 40px;
}
.prof-form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.prof-form-fc2e2baf {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.prof-form-row {
	display: flex;
	gap: 20px;
	width: 100%;
}
.prof-form-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.prof-form-main-label-group {
    margin-bottom: 5px;
}
.prof-form-label, .prof-form-main-label {
	font-size: 13px;
	color: #555;
    margin-bottom: 5px;
}
.prof-form-sub-label {
    font-size: 12px;
	color: #777;
    margin-bottom: 5px;
}
.prof-form-required-label {
    font-size: 11px;
    color: #c00;
    margin-left: 5px;
}
.prof-form-input, .prof-form-textarea {
	padding: 12px;
	border: 1px solid #666;
	border-radius: 0 !important; /* Forces no border-radius */
	width: 100%;
	box-sizing: border-box;
    background: #eaeaea;
    font-size: 14px;
    color: #333;
}
.prof-form-input:focus, .prof-form-textarea:focus {
	outline: none;
	border-color: #333;
    background: #f5f5f5;
}
.prof-form-textarea {
    resize: vertical;
}
.prof-form-char-count {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}
.prof-form-upload-area {
    border: 1px dashed #999;
    padding: 30px;
    text-align: center;
    background: #fbfbfb;
    margin-top: 5px;
}
.prof-form-upload-area i {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 10px;
}
.prof-form-upload-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}
.prof-form-upload-btn {
    background: #ccc;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
    font-size: 13px;
    display: inline-block;
}
.prof-form-file-input {
    display: none;
}
.prof-form-file-name {
    margin-top: 10px;
    font-size: 12px;
    color: #333;
    display: none;
}
.prof-form-upload-max {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}
.prof-form-privacy {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-submit-row {
    justify-content: center;
}
.prof-form-btn {
	background: #b30000;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 0 !important;
	cursor: pointer;
	font-weight: bold;
    font-size: 16px;
}
.prof-form-btn:hover {
    background: #8e0000;
}
.prof-form-message {
	margin-top: 10px;
	font-weight: bold;
    text-align: center;
}
.prof-form-message.success { color: green; }
.prof-form-message.error { color: red; }

/* Responsive */
@media (max-width: 768px) {
    .prof-form-row {
        flex-direction: column;
        gap: 15px;
    }
}